:root {
  --color-primary: #E35D31;
  --color-secondary: #8B4513;
  --color-accent: #F4D03F;
  --color-background: #FFF5E6;
  --color-text: #2C1810;
  --color-brown: #8B4513;
  --color-ochre: #FFC499;
  --color-terracotta: #DA70D6;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  --font-title: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 245, 230, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: 110px; 
  height: 110px; 
  display: block;
  object-fit: contain; 
}

.logo-symbol {
  display: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: 2rem;
  position: relative;
  z-index: 1001;
}

.nav-social .social-link {
  color: var(--color-brown);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 2px solid transparent;
}

.nav-social .social-link:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.nav-social .fa-facebook:hover {
  color: #1877f2;
  border-color: #1877f2;
}

.nav-social .fa-instagram:hover {
  color: #E4405F;
  border-color: #E4405F;
}

.nav-social .fa-tiktok:hover {
  color: #000000;
  border-color: #000000;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 80%;
  max-width: 800px;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.slide-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
  font-family: var(--font-primary);
}

.slide-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s 0.3s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.slider-btn.prev {
  left: 2rem;
}

.slider-btn.next {
  right: 2rem;
}

/* Slide indicators */
.slide-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.indicator.active {
  background: white;
}

/* About Section with Indigenous Icons */
.about-section {
  padding: 5rem 2rem;
  background: var(--color-background);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  padding: 2rem;
}

.about-content h2 {
  font-family: var(--font-title);
  color: var(--color-brown);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about-points {
  display: grid;
  gap: 2rem;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.indigenous-icon-container {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.indigenous-icon {
  width: 100%;
  height: 100%;
  stroke: var(--color-terracotta);
  stroke-width: 2;
}

/* About Us Section */
.about-us {
  padding: 6rem 2rem;
  background: var(--color-background);
  position: relative;
  overflow: hidden;
}

.about-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M30 5L55 45L5 45z' stroke='rgba(139,69,19,0.1)' stroke-width='2'/%3E%3Ccircle cx='30' cy='30' r='4' stroke='rgba(210,105,30,0.1)' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: 0;
}

.about-us-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.about-us-content {
  padding: 2rem;
}

.about-us-content h2 {
  font-family: var(--font-title);
  color: var(--color-brown);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about-us-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-us-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(139,69,19,0.1) 0%, rgba(210,105,30,0.1) 100%);
  z-index: 1;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--color-ochre) 0%, var(--color-terracotta) 100%);
  color: white;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.testimonial-info h4 {
  margin: 0;
  font-family: var(--font-title);
}

.testimonial-stars {
  color: var(--color-accent);
}

.testimonial-content {
  font-style: italic;
  line-height: 1.6;
}

/* Video Section - Updated */
.video-section {
  padding: 6rem 2rem;
  background: white;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.video-content {
  padding: 2rem;
}

.video-content h2 {
  font-family: var(--font-title);
  color: var(--color-brown);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Products Section */
.products {
  padding: 6rem 2rem;
  background: var(--color-background);
}

.products-header {
  text-align: center;
  margin-bottom: 3rem;
}

.product-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  background: white;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
}

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

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Products with Images */
.product-card {
  position: relative;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

/* Enhanced Add to Cart Button */
.add-to-cart {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.add-to-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.5s;
}

.add-to-cart:hover::before {
  left: 100%;
}

.add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(227, 93, 49, 0.3);
  background: var(--color-secondary);
}

.add-to-cart.added {
  background: var(--color-green);
}

.add-to-cart i {
  transition: transform 0.3s ease;
}

.add-to-cart:hover i {
  transform: rotate(90deg);
}

/* Contact Section */
.contact {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-terracotta) 100%);
  color: white;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M40 10L70 60L10 60z' stroke='rgba(255,255,255,0.1)' stroke-width='2'/%3E%3Ccircle cx='40' cy='40' r='5' stroke='rgba(255,255,255,0.1)' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
  z-index: 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-title);
}

.contact-methods {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.phone-btn {
  background: #4A90E2;
  color: white;
}

.phone-btn:hover {
  background: #357ABD;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 10px;
  background: #f8f8f8;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background: white;
  outline: none;
}

.form-group label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #666;
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.5rem);
  font-size: 0.8rem;
  color: var(--color-primary);
}

.submit-btn {
  background: var(--color-primary);
  color: white;
  font-size: 1.1rem;
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(227, 93, 49, 0.3);
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }
  
  .logo-img {
    width: 110px; 
    height: 110px;
  }
}

/* Location Section */
.location {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--color-ochre) 0%, var(--color-terracotta) 100%);
  position: relative;
  overflow: hidden;
}

.location::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M30 5L55 45L5 45z' stroke='rgba(255,255,255,0.1)' stroke-width='2'/%3E%3Ccircle cx='30' cy='30' r='4' stroke='rgba(255,255,255,0.1)' stroke-width='2'/%3E%3Cpath d='M15,30 Q30,15 45,30' stroke='rgba(255,255,255,0.1)' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: 0;
}

.location::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
  z-index: 1;
}

.location-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.location-header {
  text-align: center;
  margin-bottom: 2rem;
}

.location-header h2 {
  font-family: var(--font-title);
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.location-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

.location-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.location-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-container {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.map-container:hover {
  transform: translateY(-5px);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 1024px) {
  .map-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .location {
    padding: 4rem 1.5rem;
  }
  
  .location-header h2 {
    font-size: 2rem;
  }
  
  .map-container {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .location {
    padding: 3rem 1rem;
  }
  
  .map-container {
    height: 300px;
    border-radius: 10px;
  }
}

/* Footer */
.footer {
  background: var(--color-text);
  color: white;
  padding: 4rem 2rem 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M35 10L60 50L10 50z' stroke='rgba(255,255,255,0.1)' stroke-width='2'/%3E%3Ccircle cx='35' cy='35' r='4' stroke='rgba(255,255,255,0.1)' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: white;
  font-size: 1.5rem;
  transition: var(--transition);
}

.social-link:hover {
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Mobile Menu Styles - Updated */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-brown);
    transition: all 0.3s ease;
  }

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

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: var(--color-brown);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    color: var(--color-primary);
    transform: translateX(10px);
  }

  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 999;
  }

  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }

  body.menu-active {
    overflow: hidden;
  }

  .nav-container {
    padding: 0.5rem 1rem;
  }

  .nav-social {
    margin-right: 3.5rem;
  }

  .nav-social .social-link {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .logo-img {
    width: 80px;
    height: 80px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .nav-links {
    width: 85%;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
  .nav-links {
    height: -webkit-fill-available;
  }

  .hero {
    height: -webkit-fill-available;
  }
}

/* Additional Touch Device Optimizations */
@media (hover: none) {
  .nav-links a:active {
    background: rgba(0,0,0,0.05);
  }

  .filter-btn:active {
    transform: scale(0.95);
  }

  .product-card:active {
    transform: scale(0.98);
  }
}

/* Improved Accessibility */
.nav-links a:focus-visible,
.filter-btn:focus-visible,
.contact-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Navigation */
  .nav-container {
    padding: 0.5rem 1rem;
  }

  .logo-img {
    width: 80px;
    height: 80px;
  }

  .nav-social {
    margin-right: 3.5rem;
  }

  .nav-social .social-link {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  /* Hero Section */
  .hero {
    height: 60vh;
  }

  .slide-content h1 {
    font-size: 2.5rem;
  }

  .slide-content p {
    font-size: 1.2rem;
  }

  /* Features Section */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Products Section */
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-filters {
    flex-wrap: wrap;
    justify-content: center;
  }

  .filter-btn {
    margin: 0.5rem;
  }

  /* Testimonials Section */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Contact Section */
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    flex-direction: column;
  }

  .contact-btn {
    width: 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    margin-top: 1rem;
  }
}

/* Features Section - Updated */
.features {
  padding: 4rem 1rem;
  background: var(--color-background);
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.feature-card h3 {
  font-family: var(--font-title);
  color: var(--color-brown);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--color-text);
  line-height: 1.6;
  font-size: 1rem;
  max-width: 280px;
  margin: 0 auto;
}

.indigenous-icon {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

@media (max-width: 768px) {
  .features {
    padding: 3rem 1rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .features {
    padding: 2rem 0.5rem;
  }
  
  .feature-grid {
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem 1rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
}

/* Blog Section */
.blog-section {
  padding: 6rem 2rem;
  background: var(--color-background);
  position: relative;
}

.blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M30 5L55 45L5 45z' stroke='rgba(139,69,19,0.1)' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: 0;
}

.blog-section .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-brown);
  text-align: center;
  margin-bottom: 1rem;
  font-family: var(--font-title);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text);
  font-size: 1.2rem;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-image {
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, var(--color-ochre) 0%, var(--color-terracotta) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.precolumbian-icon {
  width: 120px;
  height: 120px;
  color: white;
  transition: transform 0.3s ease;
}

.blog-card:hover .precolumbian-icon {
  transform: scale(1.1) rotate(5deg);
}

.blog-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.blog-meta i {
  color: var(--color-primary);
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  margin-top: auto;
  text-decoration: none;
  color: var(--color-brown);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--color-brown);
  border-radius: 30px;
  transition: all 0.3s ease;
  background: white;
}

.read-more-link::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--color-ochre), var(--color-terracotta));
  z-index: -1;
  border-radius: 30px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.read-more-link:hover {
  color: white;
  border-color: transparent;
}

.read-more-link:hover::before {
  transform: scaleX(1);
}

.read-more-link i {
  transition: transform 0.3s ease;
}

.read-more-link:hover i {
  transform: translateX(5px);
}

.read-more-link::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238B4513' d='M12 2L2 22h20L12 2zm0 3l6.7 13H5.3L12 5z'/%3E%3C/svg%3E");
  background-size: contain;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.read-more-link:hover::after {
  opacity: 1;
  right: 5px;
}

@media (max-width: 768px) {
  .blog-section {
    padding: 4rem 1rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .blog-image {
    height: 180px;
  }

  .precolumbian-icon {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .blog-image {
    height: 150px;
  }

  .precolumbian-icon {
    width: 80px;
    height: 80px;
  }

  .read-more-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

.indigenous-icon {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  max-width: 120px;
  max-height: 120px;
}

.indigenous-pattern {
  max-width: 100%;
  height: auto;
}

.precolumbian-icon svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Blog Article Styles */
.article-container {
  max-width: 800px;
  margin: 150px auto 4rem;
  padding: 0 2rem;
}

.blog-article {
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

.blog-article h1 {
  font-size: 2.5rem;
  color: var(--color-brown);
  margin: 2rem;
  font-family: var(--font-title);
  line-height: 1.3;
}

.article-meta {
  margin: 0 2rem;
  display: flex;
  gap: 2rem;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.article-category {
  color: var(--color-primary);
  font-weight: 600;
}

.blog-article img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 2rem;
}

.article-content {
  padding: 0 2rem 3rem;
  line-height: 1.8;
  color: #333;
}

.article-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.article-content p:first-of-type::first-letter {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-primary);
  float: left;
  line-height: 1;
  padding-right: 0.5rem;
  font-family: var(--font-title);
}

.article-share {
  margin: 3rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.share-title {
  font-size: 1.2rem;
  color: var(--color-brown);
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
}

.share-button {
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.share-button:hover {
  transform: translateY(-2px);
}

.share-facebook {
  background: #1877f2;
}

.share-twitter {
  background: #1da1f2;
}

.share-instagram {
  background: #E4405F;
}

.share-whatsapp {
  background: #25d366;
}

.related-articles {
  margin-top: 4rem;
}

.related-articles h2 {
  font-size: 2rem;
  color: var(--color-brown);
  margin-bottom: 2rem;
  text-align: center;
}

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

.related-article {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.related-article:hover {
  transform: translateY(-5px);
}

.related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-article:hover .related-image img {
  transform: scale(1.1);
}

.related-content {
  padding: 1.5rem;
}

.related-content h3 {
  font-size: 1.2rem;
  color: var(--color-brown);
  margin-bottom: 1rem;
}

.related-content p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .article-container {
    margin-top: 120px;
  }

  .blog-article h1 {
    font-size: 2rem;
    margin: 1.5rem;
  }

  .article-meta {
    margin: 0 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .blog-article img {
    height: 250px;
  }

  .article-content {
    padding: 0 1.5rem 2rem;
  }

  .article-content p {
    font-size: 1rem;
  }

  .share-buttons {
    flex-wrap: wrap;
  }

  .share-button {
    width: 100%;
    justify-content: center;
  }
}