/* General Reset */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #2a9d8f;
  --secondary-color: #264653;
  --accent-color: #e9c46a;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --success-color: #52b788;
  --hover-transition: all 0.3s ease-in-out;
}

body, h1, h2, p, ul, li, a, form, input, textarea, button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--light-color);
  color: var(--secondary-color);
  line-height: 1.6;
  scroll-behavior: smooth;
}

header {
  background-color: var(--secondary-color);
  padding: 20px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  transition: var(--hover-transition);
}

header h1:hover {
  transform: scale(1.05);
  color: var(--accent-color);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: var(--hover-transition);
  position: relative;
}

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

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  transition: var(--hover-transition);
}

nav a:hover::after {
  width: 100%;
}

.hero {
  background: linear-gradient(rgba(38, 70, 83, 0.7), rgba(42, 157, 143, 0.7)), url('https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  text-align: center;
  padding: 150px 20px;
  color: #fff;
  position: relative;
}

.hero h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1.5s ease-out;
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 20px auto;
  line-height: 1.8;
  animation: slideUp 1.5s ease-out;
}

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

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

.product-section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.product-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.product-section h2::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  bottom: -10px;
  left: 20%;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.product {
  border: none;
  border-radius: 12px;
  background-color: white;
  padding: 20px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--hover-transition);
  position: relative;
  overflow: hidden;
}

.product:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(42, 157, 143, 0.2);
}

.product img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  transition: var(--hover-transition);
}

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

.product h3 {
  font-size: 1.2rem;
  margin: 15px 0 10px;
  color: var(--secondary-color);
  font-weight: 600;
}

.product p {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 15px;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.care-link {
  display: inline-block;
  padding: 8px 12px;
  background-color: var(--light-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--primary-color);
  transition: var(--hover-transition);
}

.care-link:hover {
  background-color: var(--primary-color);
  color: white;
}

.contact {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 60px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact form {
  max-width: 500px;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

input, textarea {
  padding: 15px;
  border: 2px solid transparent;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: var(--hover-transition);
  font-family: 'Poppins', sans-serif;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(233, 196, 106, 0.3);
}

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

button {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  border: none;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--hover-transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

button:hover {
  background-color: #f4a261;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

button:active {
  transform: translateY(-1px);
}

.cart {
  padding: 40px 20px;
  text-align: center;
  background-color: #f8f9fa;
  border-radius: 12px;
  margin: 40px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cart h2 {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

#cart-list {
  list-style: none;
  margin-bottom: 20px;
  text-align: left;
  max-width: 500px;
  margin: 0 auto 20px;
}

#cart-list li {
  padding: 10px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

#cart-total {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.whatsapp-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: var(--hover-transition);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* About section */
.about-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--hover-transition);
}

.about-image img:hover {
  transform: scale(1.02);
}

.about-text {
  flex: 2;
  min-width: 300px;
}

.about-text h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
}

.about-list li:before {
  content: '✓';
  color: var(--success-color);
  margin-right: 10px;
  font-weight: bold;
}

/* Hero buttons */
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--hover-transition);
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  box-shadow: 0 4px 10px rgba(233, 196, 106, 0.3);
}

.btn-primary:hover {
  background-color: #f4a261;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(233, 196, 106, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Cart info */
.cart-info {
  margin-top: 30px;
  background-color: #f1f8f6;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
}

.care-instructions {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin: 15px 0;
  border-left: 4px solid var(--primary-color);
}

.care-instructions h4 {
  color: var(--secondary-color);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.care-instructions p {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.5;
}

.care-instructions .care-link {
  margin-top: 10px;
  display: inline-block;
}

.cart-info h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.cart-info-list {
  list-style: none;
  padding: 0;
}

.cart-info-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
  position: relative;
  padding-left: 25px;
}

.cart-info-list li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Contact section */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  color: white;
  text-align: left;
}

.contact-info h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.contact-details li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

select {
  padding: 15px;
  border: 2px solid transparent;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: var(--hover-transition);
  font-family: 'Poppins', sans-serif;
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23264653' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(233, 196, 106, 0.3);
}

/* Footer */
footer {
  text-align: center;
  padding: 60px 20px 30px;
  background-color: var(--secondary-color);
  color: white;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 40px;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  text-align: left;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-section h3:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  bottom: -8px;
  left: 0;
  background-color: var(--accent-color);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: var(--hover-transition);
}

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

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-links a {
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--hover-transition);
}

.social-links a:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  width: 90%;
  max-width: 800px;
  border-radius: 12px;
  position: relative;
  transform: translateY(-50px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: var(--secondary-color);
}

.modal-body {
  max-height: 80vh; /* or a fixed px height like 600px */
  overflow-y: auto;
  padding: 20px;
}

.modal-product {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.modal-product img {
  max-width: 100%;
  height: 100%;
  display: block;
  margin-bottom: 1rem;
}

.modal-product-details {
  flex: 1;
  min-width: 200px;
}

.modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.modal-actions button {
  flex: 1;
  padding: 12px;
}

.modal-actions .add-cart-btn {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

.modal-actions .close-btn {
  background-color: var(--light-color);
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.modal-actions .close-btn:hover {
  background-color: var(--secondary-color);
  color: white;
}

.logo {
  height: 60px; /* or any size you prefer */
  display: block;
  margin: 0 auto;
}
/* Wellness Intro */
.wellness-intro {
  margin: 30px 0;
  text-align: center;
}

/* Blog Section */
.blog-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #f8f9fa 0%, #e9ecef 100%);
}

.blog-container {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.blog-post {
  padding: 0;
}

.blog-header {
  padding: 40px 40px 20px;
}

.blog-header h2 {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-meta {
  display: flex;
  gap: 20px;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.blog-featured-image {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-content {
  padding: 0 40px 40px;
}

.blog-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 40px 0 20px;
  position: relative;
}

.blog-content h3::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.blog-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #333;
}

.blog-list {
  margin: 20px 0 30px;
  padding-left: 20px;
}

.blog-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}

.blog-list li::before {
  content: '•';
  color: var(--primary-color);
  font-size: 1.5rem;
  position: absolute;
  left: -10px;
  top: -5px;
}

.testimonial {
  background-color: #f9f9f9;
  border-left: 4px solid var(--accent-color);
  padding: 25px;
  margin: 30px 0;
  font-style: italic;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
  top: -15px;
  left: 10px;
}

.testimonial p {
  position: relative;
  z-index: 1;
}

.testimonial cite {
  display: block;
  font-weight: 600;
  margin-top: 10px;
  font-style: normal;
  text-align: right;
  color: var(--primary-color);
}

/* Benefit Cards */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.benefit-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--hover-transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(42, 157, 143, 0.15);
}

.benefit-card h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
}

.benefit-card p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.benefit-card .btn-small {
  padding: 8px 15px;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Placement Guide */
.placement-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.placement-item {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--primary-color);
}

.placement-item h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.placement-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Care Tips */
.care-tips {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px 25px 25px 45px;
  margin: 30px 0;
}

.care-tips li {
  margin-bottom: 15px;
  position: relative;
}

.care-tips li::before {
  content: '✓';
  color: var(--success-color);
  position: absolute;
  left: -25px;
  font-weight: bold;
}

/* CTA Container */
.cta-container {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 40px;
  border-radius: 10px;
  margin: 40px 0;
  text-align: center;
}

.cta-container h3 {
  color: white;
  margin-bottom: 20px;
}

.cta-container h3::after {
  background-color: white;
  left: 50%;
  transform: translateX(-50%);
}

.cta-container p {
  color: white;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-container .btn {
  margin: 10px;
}

/* Blog References */
.blog-references {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.blog-references h4 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.blog-references ul {
  padding-left: 20px;
}

.blog-references li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.blog-references a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--hover-transition);
}

.blog-references a:hover {
  text-decoration: underline;
}

/* Small Button */
.btn-small {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--hover-transition);
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

.btn-small:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Plant Guide Section */
.plant-guide-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #f8f9fa 0%, #e9ecef 100%);
}

.plant-guide-content {
  max-width: 1200px;
  margin: 0 auto;
}

.plant-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.guide-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--hover-transition);
}

.guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(42, 157, 143, 0.2);
}

.guide-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.guide-card-content {
  padding: 20px;
}

.guide-card h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.guide-card p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.read-more::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--hover-transition);
}

.read-more:hover::after {
  width: 100%;
}

/* Seasonal Guides */
.seasonal-guides {
  margin-top: 60px;
}

.seasonal-guides h3 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.season-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--hover-transition);
}

.season-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(42, 157, 143, 0.15);
}

.season-card h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.1rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
}

.season-card ul {
  list-style: none;
  padding: 0;
}

.season-card li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}

.season-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--hover-transition);
}

.season-card a:hover {
  color: var(--accent-color);
}

/* Local Resources */
.local-resources {
  margin-top: 60px;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.local-resources h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.resources-list {
  list-style: none;
  padding: 0;
}

.resources-list li {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.resources-list a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--hover-transition);
}

.resources-list a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Back to top button */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 15px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .product {
    width: 100%;
    max-width: 300px;
  }
}

/* Accessibility */
:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
}

/* Print styles */
@media print {
  body {
    background-color: white;
    color: black;
  }
  
  header, footer, .contact form, .whatsapp-button {
    display: none;
  }
}
