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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* HEADER */
.site-header {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #c9a227;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  height: 60px;
  width: auto;
}

.header-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* BUTTONS */
.btn-primary {
  background: #c9a227;
  color: #1a1a1a;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: #a8861f;
}

.btn-secondary {
  background: transparent;
  color: #c9a227;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  border: 2px solid #c9a227;
  transition: all 0.3s;
  display: inline-block;
}

.btn-secondary:hover {
  background: #c9a227;
  color: #1a1a1a;
}

/* HERO */
.hero {
  background-size: cover;
  background-position: center;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.7);
  width: 100%;
  padding: 80px 0;
}

.hero h1 {
  color: #c9a227;
  font-size: 2.5rem;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero p {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* TRUST */
.trust {
  background: #f8f8f8;
  padding: 30px 0;
  color: #333;
}

.trust ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  flex-wrap: wrap;
  margin-top: 15px;
}

.trust li {
  position: relative;
  padding-left: 25px;
}

.trust li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #c9a227;
  font-weight: bold;
}

.trust p {
  text-align: center;
}

/* TESTIMONIALS */
.testimonials {
  padding: 60px 0;
  background: #f8f8f8;
}

.testimonials h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 180px;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 0 20px;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

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

.testimonial-slide blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-slide cite {
  display: block;
  color: #c9a227;
  font-weight: 600;
  font-style: normal;
}

.carousel-btn {
  width: 45px;
  height: 45px;
  border: none;
  background: transparent;
  color: #c9a227;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.7;
}

.carousel-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot:hover {
  background: #999;
}

.carousel-dot.active {
  background: #c9a227;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 2rem;
  }
  
  .testimonial-slide blockquote {
    font-size: 1.1rem;
  }
  
  .testimonial-track {
    min-height: 220px;
  }
  
  .carousel-dot {
    width: 6px;
    height: 6px;
  }
  
  .carousel-dot.active {
    width: 18px;
  }
}

/* SERVICES/PRODUCTS */
.services {
  padding: 60px 0;
  background: #fff;
}

.services h2, .process h2, .contact h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1a1a1a;
}

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

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.2);
}

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

.card h3 {
  padding: 20px 20px 10px;
  color: #1a1a1a;
  text-align: center;
}

.card p {
  padding: 0 20px 20px;
  color: #666;
  text-align: center;
}

/* WHY */
.why {
  background: #fff;
  padding: 60px 0;
  color: #333;
}

.why h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.why ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.why li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.why li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #c9a227;
}

/* PROCESS */
.process {
  padding: 60px 0;
  background: #fff;
}

.process ol {
  max-width: 600px;
  margin: 0 auto;
  counter-reset: step;
  list-style: none;
}

.process li {
  padding: 15px 0 15px 50px;
  position: relative;
  counter-increment: step;
}

.process li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  width: 35px;
  height: 35px;
  background: #c9a227;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* CONTACT */
.contact {
  background: #f8f8f8;
  padding: 60px 0;
  color: #333;
}

.contact h2 {
  color: #1a1a1a;
}

.contact p {
  text-align: center;
  margin-bottom: 30px;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: #333;
}

input::placeholder, textarea::placeholder {
  color: #999;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #c9a227;
}

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

form .btn-primary {
  font-size: 1rem;
}

/* FOOTER */
footer {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

footer p {
  margin: 5px 0;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #c9a227;
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
  background: #a8861f;
}

.social-icon svg {
  fill: #1a1a1a;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  background-color: #25D366 !important;
  color: #fff !important;
  padding: 12px 24px;
  text-decoration: none !important;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.btn-whatsapp:hover {
  background: #1da851;
}

.btn-whatsapp.btn-large {
  padding: 18px 35px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* EMAIL CTA BUTTON */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.btn-email-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #c9a227 0%, #d4af37 50%, #c9a227 100%);
  color: #fff;
  padding: 20px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
  width: 100%;
  text-align: center;
}

.btn-email-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
  background: linear-gradient(135deg, #d4af37 0%, #c9a227 50%, #d4af37 100%);
}

.btn-email-cta svg {
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .btn-email-cta {
    padding: 18px 30px;
    font-size: 1.1rem;
  }
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* MENU PLANNER */
.menu-planner {
  padding: 80px 0;
  background: #fff;
}

.menu-planner h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: #666;
  margin-bottom: 15px;
}

.planner-intro {
  text-align: center;
  color: #333;
  font-size: 1rem;
  margin-bottom: 40px;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.month-tile {
  position: relative;
  aspect-ratio: 4/3;
  background-color: #2a5a3a;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.month-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s;
}

.month-tile:hover::before {
  background: rgba(0, 0, 0, 0.4);
}

.month-tile:hover {
  transform: scale(1.02);
}

.month-tile span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .month-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .month-tile span {
    font-size: 1.1rem;
  }
}

@media (max-width: 500px) {
  .month-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MONTH MODALS */
.month-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-size: cover;
  background-position: center;
  overflow-y: auto;
}

.month-modal::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.month-modal.active {
  display: flex;
}

.modal-close {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.modal-close:hover {
  opacity: 1;
}

.modal-content {
  position: relative;
  z-index: 1;
  width: 50%;
  max-width: 600px;
  margin: 80px auto;
  padding: 40px;
}

.modal-content h2 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
}

.modal-sidebar {
  position: fixed;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  width: 200px;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.6;
  z-index: 1;
  opacity: 0.9;
}

.modal-sidebar p {
  margin-bottom: 15px;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.3s;
}

.accordion-header:hover {
  opacity: 0.8;
}

.accordion-icon::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
}

.accordion-item.open .accordion-icon::after {
  content: '\2212';
}

.accordion-body {
  display: none;
  padding: 0 0 15px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
}

.accordion-item.open .accordion-body {
  display: block;
}

@media (max-width: 1024px) {
  .modal-sidebar {
    display: none;
  }
  
  .modal-content {
    width: 80%;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .modal-content {
    width: 90%;
    padding: 30px 20px;
    margin: 60px auto;
  }
  
  .modal-content h2 {
    font-size: 1.3rem;
  }
  
  .modal-close {
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
  }
}

/* DELIVERY AREA MAP */
.delivery-area {
  padding: 60px 0;
  background: #fff;
}

.delivery-area h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.delivery-area > .container > p {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
}

/* CONTACT ALT */
.contact-alt {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}

.contact-alt p {
  margin-bottom: 15px;
}

/* INSTAGRAM SECTION */
.instagram-section {
  padding: 60px 0;
  background: #fff;
}

.instagram-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.instagram-section > .container > p {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.insta-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
}

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

.insta-item:hover img {
  transform: scale(1.1);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: opacity 0.3s, transform 0.3s;
  margin: 0 auto;
}

.btn-instagram:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.instagram-section .container {
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .trust ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .header-container {
    justify-content: center;
    text-align: center;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* MENU PLANNER */
.menu-planner-hero {
  color: #fff;
  padding: 80px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.menu-planner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.85) 0%, rgba(168, 138, 31, 0.9) 100%);
  z-index: 1;
}

.menu-planner-hero .container {
  position: relative;
  z-index: 2;
}

.menu-planner-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.menu-planner-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* Month-specific hero backgrounds */
.hero-january { background-image: url('images/month-jan.jpg'); }
.hero-february { background-image: url('images/month-feb.jpg'); }
.hero-march { background-image: url('images/month-mar.jpg'); }
.hero-april { background-image: url('images/month-apr.jpg'); }
.hero-may { background-image: url('images/month-may.jpg'); }
.hero-june { background-image: url('images/month-jun.jpg'); }
.hero-july { background-image: url('images/month-jul.jpg'); }
.hero-august { background-image: url('images/month-aug.jpg'); }
.hero-september { background-image: url('images/month-sep.jpg'); }
.hero-october { background-image: url('images/month-oct.jpg'); }
.hero-november { background-image: url('images/month-nov.jpg'); }
.hero-december { background-image: url('images/month-dec.jpg'); }

.menu-planner-content {
  padding: 40px 0;
  background: #fff;
}

.month-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.month-nav.bottom {
  margin-top: 30px;
  margin-bottom: 0;
}

.month-nav-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #c9a227;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
}

.month-nav-btn:hover {
  background: #a88a1f;
}

/* ACCORDION */
.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 18px 24px;
  background: #fafafa;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #f0f0f0;
}

.accordion-header::after {
  content: '+';
  font-size: 1.5rem;
  color: #c9a227;
  font-weight: 300;
}

.accordion-item.active .accordion-header {
  background: #c9a227;
  color: #fff;
}

.accordion-item.active .accordion-header::after {
  content: '−';
  color: #fff;
}

.accordion-content {
  display: none;
  padding: 24px;
  background: #fff;
}

.accordion-item.active .accordion-content {
  display: block;
}

.produce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.produce-category h4 {
  color: #c9a227;
  margin-bottom: 10px;
  font-size: 1rem;
}

.produce-category ul {
  list-style: none;
  padding: 0;
}

.produce-category li {
  padding: 4px 0;
  color: #555;
  font-size: 0.95rem;
}

.produce-list {
  list-style: none;
  padding: 0;
  columns: 2;
  column-gap: 40px;
}

.produce-list li {
  padding: 6px 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

.produce-list.az-list {
  columns: 3;
}

.produce-note {
  margin-top: 16px;
  padding: 12px;
  background: #fff9e6;
  border-left: 3px solid #c9a227;
  font-size: 0.9rem;
  color: #666;
}

.planner-note {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

/* Menu Calendar Button */
.btn-calendar {
  display: inline-block;
  padding: 18px 40px;
  background: #c9a227;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.btn-calendar:hover {
  background: #a88a1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.calendar-section {
  padding: 80px 0;
  background: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), url('images/hero-produce.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
}

.calendar-section h2 {
  margin-bottom: 20px;
  color: #333;
  font-size: 2rem;
}

.calendar-section p {
  margin-bottom: 30px;
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .menu-planner-hero h1 {
    font-size: 1.8rem;
  }
  
  .produce-list {
    columns: 1;
  }
  
  .produce-list.az-list {
    columns: 1;
  }
  
  .month-nav {
    flex-direction: column;
    gap: 10px;
  }
  
  .month-nav-btn {
    text-align: center;
  }
}
