/* ============================================================
   Avila Market — Section Styles
   ============================================================ */

/* ─── HERO ─────────────────────────────────────────────────── */
.am-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  background: #e9edf2;
  overflow: hidden;
}
.am-hero-media {
  position: absolute;
  right: 0;
  top: 6rem;
  height: 100%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  z-index: 1;
}
.am-hero-media img {
  height: 160%;
  width: auto;
  display: block;
}
.am-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.am-hero-content { max-width: 50%; }

@media (max-width: 900px) {
  .am-hero-content { max-width: 60%; }
  .am-hero-media img { height: 100%; }
}
@media (max-width: 600px) {
  .am-hero { min-height: auto; }
  .am-hero-content { max-width: 100%; }
  .am-hero-media { display: none; }
  .am-hero-inner { padding: 3rem 1.5rem; }
  .am-hero-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .am-hero-btns { justify-content: center; }
  .am-hero-highlight { justify-content: center; }
}
.am-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.am-hero-content { padding-bottom: 4rem; }
.am-hero-label {
  display: inline-block;
  background: #6fcbd2;
  color: #fff;
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.am-hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #253b63;
  margin-bottom: 1rem;
}
.am-hero-subtitle { font-size: 1.05rem; color: #555; margin-bottom: 0.75rem; line-height: 1.6; }
.am-hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
  background: #92c83e;
  padding: 0.5rem 0.9rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}
.am-hero-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.am-hero-btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #253b63; color: #fff;
  padding: 0.95rem 1.8rem; border-radius: 1.1rem;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease;
}
.am-hero-btn-primary:hover { background: #1c2f50; transform: translateY(-2px); }
.am-hero-btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: #253b63;
  border: 2px solid #253b63;
  padding: 0.95rem 1.8rem; border-radius: 1.1rem;
  font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.3s ease;
}
.am-hero-btn-secondary:hover { background: rgba(37,59,99,0.08); }

@media (max-width: 768px) {
  .am-hero { min-height: auto; }
  .am-hero-media { display: none; }
  .am-hero-inner { padding: 3.5rem 1.5rem 3rem; }
  .am-hero-content { max-width: 100%; text-align: center; }
  .am-hero-btns { justify-content: center; }
  .am-hero-highlight { justify-content: center; }
  .am-hero-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
}

/* ─── TRUST STRIP ───────────────────────────────────────────── */
.am-trust {
  background: #fff;
  border-bottom: 1px solid #e9edf2;
  padding: 18px 1.5rem;
}
.am-trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap;
}
.am-trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.92rem; color: #253b63;
}
.am-trust-item i { color: #92c83e; font-size: 1.1rem; }
@media (max-width: 600px) {
  .am-trust-inner { gap: 1.25rem; }
  .am-trust-item { font-size: 0.82rem; }
}

/* ─── PRODUCTS ──────────────────────────────────────────────── */
.am-products { background: #fff; padding: 60px 1.5rem 40px; }
.am-products-inner { max-width: 1200px; margin: 0 auto; }
.am-products-header { text-align: center; margin-bottom: 2.5rem; }
.am-products-label { color: #6fcbd2; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-bottom: 0.5rem; }
.am-products-title { font-family: 'DM Sans', sans-serif; font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; color: #253b63; margin-bottom: 0.6rem; }
.am-products-desc { font-size: 1.05rem; color: #666; max-width: 540px; margin: 0 auto; line-height: 1.6; }
.am-products-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.am-product-card {
  background: #fff; border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10); overflow: hidden;
  transition: all 0.3s ease; width: 100%; max-width: 360px; flex: 0 1 360px;
  display: flex; flex-direction: column;
}
.am-product-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.16); }
.am-product-img { width: 100%; height: 240px; object-fit: contain; display: block; background: #fff; padding: 1rem; }
.am-product-img-placeholder { width: 100%; height: 220px; background: #f0f3f6; display: flex; align-items: center; justify-content: center; color: #bbb; font-size: 0.9rem; }
.am-product-body { padding: 1.5rem; text-align: center; display: flex; flex-direction: column; flex: 1; }
.am-product-name { font-family: 'DM Sans', sans-serif; font-size: 1.15rem; font-weight: 700; color: #253b63; margin-bottom: 0.5rem; }
.am-product-desc { font-size: 0.95rem; color: #666; line-height: 1.55; margin-bottom: 1rem; }
.am-product-meta { background: #f5f7fa; border-radius: 10px; padding: 0.85rem 1rem; margin-bottom: 1.1rem; text-align: left; }
.am-product-units { font-weight: 600; color: #253b63; font-size: 0.92rem; margin-bottom: 0.25rem; display: flex; align-items: center; gap: 0.4rem; }
.am-product-units i { color: #6fcbd2; }
.am-product-bestfor { font-size: 0.85rem; color: #888; }
.am-product-prices { display: flex; align-items: baseline; justify-content: center; gap: 0.6rem; margin-bottom: 1.1rem; }
.am-product-price { font-size: 1.45rem; font-weight: 700; color: #253b63; }
.am-product-compare { font-size: 0.95rem; color: #bbb; text-decoration: line-through; }
.am-product-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; background: #253b63; color: #fff; border: none;
  border-radius: 1.1rem; padding: 0.9rem 1.5rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s ease; text-decoration: none; margin-top: auto;
}
.am-product-btn:hover { opacity: 0.88; transform: translateY(-2px); }
@media (max-width: 600px) {
  .am-products { padding: 40px 1.25rem 28px; }
  .am-product-card { max-width: 100%; flex-basis: 100%; }
}

/* ─── DELIVERY ──────────────────────────────────────────────── */
.am-delivery { background: #fff; padding: 60px 1.5rem; }
.am-delivery-inner { max-width: 1200px; margin: 0 auto; }
.am-delivery-header { text-align: center; margin-bottom: 3rem; }
.am-delivery-label { color: #6fcbd2; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-bottom: 0.5rem; }
.am-delivery-title { font-family: 'DM Sans', sans-serif; font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; color: #253b63; margin-bottom: 0.6rem; }
.am-delivery-subtitle { font-size: 1.05rem; color: #666; max-width: 540px; margin: 0 auto; line-height: 1.6; }
.am-delivery-main { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin-bottom: 3rem; }
.am-delivery-text h3 { font-family: 'DM Sans', sans-serif; font-size: 1.9rem; font-weight: 700; color: #253b63; margin-bottom: 1rem; line-height: 1.25; }
.am-delivery-text p { font-size: 1.05rem; color: #666; line-height: 1.7; margin-bottom: 1rem; }
.am-delivery-cta { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.am-delivery-cta-text { font-size: 1rem; color: #555; }
.am-delivery-cta-text strong { color: #253b63; }
.am-delivery-cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #92c83e; color: #fff; border: none;
  border-radius: 1.1rem; padding: 0.75rem 1.4rem;
  font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.3s ease;
}
.am-delivery-cta-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.am-delivery-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.am-delivery-map iframe { display: block; width: 100%; height: 380px; border: 0; }
.am-delivery-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.am-delivery-card {
  background: #f7f9fb; border-radius: 14px; padding: 1.75rem 1.5rem; text-align: center;
  transition: all 0.3s ease; border: 1.5px solid transparent;
}
.am-delivery-card:hover { transform: translateY(-3px); background: #fff; border-color: #92c83e; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.am-delivery-card-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #92c83e, #6fcbd2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: #fff; font-size: 1.2rem;
}
.am-delivery-card h4 { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: #253b63; margin-bottom: 0.5rem; }
.am-delivery-card p { font-size: 0.9rem; color: #666; line-height: 1.55; }
@media (max-width: 768px) {
  .am-delivery-main { grid-template-columns: 1fr; gap: 2rem; }
  .am-delivery-map iframe { height: 280px; }
  .am-delivery-text h3 { font-size: 1.4rem; }
}
@media (max-width: 540px) {
  .am-delivery { padding: 40px 1.25rem; }
}

/* ─── CTA BANNER ────────────────────────────────────────────── */
.am-cta { padding: 40px 1.5rem; background: #f7f9fb; }
.am-cta-wrap {
  max-width: 1100px; margin: 0 auto;
  background: #253b63; color: #fff; text-align: center;
  border-radius: 18px; padding: 3.5rem 2rem;
  box-shadow: 0 16px 48px rgba(37,59,99,0.25);
}
.am-cta-title { font-family: 'DM Sans', sans-serif; font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; color: #fff; margin-bottom: 0.6rem; line-height: 1.2; }
.am-cta-highlight { color: #92c83e; }
.am-cta-sub { font-size: 1.05rem; color: #fff; opacity: 0.85; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.am-cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #92c83e; color: #fff; border: none;
  border-radius: 1.1rem; padding: 1rem 2.5rem;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; transition: all 0.3s ease;
}
.am-cta-btn:hover { opacity: 0.88; transform: translateY(-2px); }
@media (max-width: 540px) {
  .am-cta { padding: 2rem 1.25rem; }
  .am-cta-wrap { padding: 2.5rem 1.5rem; }
}

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.am-testi { background: #f5f7fa; padding: 60px 1.5rem; }
.am-testi-inner { max-width: 1200px; margin: 0 auto; }
.am-testi-header { text-align: center; margin-bottom: 2.5rem; }
.am-testi-label { color: #6fcbd2; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-bottom: 0.5rem; }
.am-testi-title { font-family: 'DM Sans', sans-serif; font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; color: #253b63; margin-bottom: 0.6rem; }
.am-testi-subtitle { font-size: 1.05rem; color: #666; max-width: 500px; margin: 0 auto; }
.am-testi-wrapper { overflow: hidden; }
.am-testi-slider { display: flex; gap: 1.75rem; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.am-testi-slider.no-slide { flex-wrap: wrap; justify-content: center; transform: none !important; }
.am-testi-card {
  flex: 0 0 calc(33.333% - 1.17rem); min-width: 280px;
  background: #fff; border-radius: 15px; padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08); transition: all 0.3s ease;
  display: flex; flex-direction: column;
}
.am-testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.am-testi-stars { color: #ffc107; margin-bottom: 1rem; font-size: 0.9rem; }
.am-testi-quote {
  font-size: 0.97rem; color: #555; font-style: italic; line-height: 1.7;
  flex: 1; margin-bottom: 1.5rem; position: relative; padding-left: 1.25rem;
}
.am-testi-quote::before {
  content: '"'; position: absolute; left: 0; top: -0.25rem;
  font-size: 2.5rem; color: #6fcbd2; opacity: 0.5; font-style: normal; line-height: 1;
}
.am-testi-author { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.am-testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #6fcbd2, #253b63);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.1rem;
  font-family: 'DM Sans', sans-serif; flex-shrink: 0;
}
.am-testi-name { font-family: 'DM Sans', sans-serif; font-weight: 700; color: #253b63; font-size: 0.95rem; margin-bottom: 0.1rem; }
.am-testi-location { font-size: 0.82rem; color: #999; }
@media (max-width: 900px) { .am-testi-card { flex-basis: calc(50% - 0.875rem); } }
@media (max-width: 540px) {
  .am-testi { padding: 40px 1.25rem; }
  .am-testi-card { flex-basis: 100%; min-width: 0; }
}

/* ─── ABOUT ─────────────────────────────────────────────────── */
.am-about { background: #fff; padding: 60px 1.5rem; }
.am-about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.am-about-label { color: #6fcbd2; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-bottom: 0.6rem; }
.am-about-title { font-family: 'DM Sans', sans-serif; font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 700; color: #253b63; margin-bottom: 1rem; line-height: 1.2; }
.am-about-desc { font-size: 1.05rem; color: #666; line-height: 1.7; margin-bottom: 2rem; }
.am-about-prep-title { font-family: 'DM Sans', sans-serif; font-size: 1.15rem; font-weight: 700; color: #253b63; margin-bottom: 1.25rem; }
.am-about-prep-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.75rem; }
.am-about-prep-card { background: #f7f9fb; border-radius: 14px; padding: 1.5rem 1rem; text-align: center; border: 1.5px solid #e9edf2; }
.am-about-prep-card svg { margin: 0 auto 0.75rem; }
.am-about-prep-method { font-family: 'DM Sans', sans-serif; font-weight: 700; color: #253b63; font-size: 1rem; margin-bottom: 0.2rem; }
.am-about-prep-time { font-size: 1.25rem; font-weight: 600; color: #6fcbd2; }
.am-about-prep-temp { font-size: 0.88rem; color: #888; }
.am-about-storage {
  display: flex; align-items: flex-start; gap: 0.85rem;
  background: #f5f7fa; border-radius: 12px; padding: 1.1rem 1.25rem; margin-bottom: 1.5rem;
  border-left: 3px solid #6fcbd2;
}
.am-about-storage i { color: #6fcbd2; font-size: 1.2rem; margin-top: 0.1rem; flex-shrink: 0; }
.am-about-storage p { font-size: 0.95rem; color: #555; line-height: 1.6; margin: 0; }
.am-about-allergens { font-size: 0.9rem; color: #888; margin-bottom: 1.75rem; }
.am-about-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #92c83e; color: #fff;
  padding: 0.9rem 1.8rem; border-radius: 1.1rem;
  font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.3s ease;
}
.am-about-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.am-about-image-col { display: flex; justify-content: center; align-items: center; }
.am-about-image-col img { width: 100%; max-width: 460px; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 35%; border-radius: 15px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
@media (max-width: 900px) {
  .am-about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .am-about-image-col { order: -1; }
  .am-about-image-col img { max-width: 70%; }
}
@media (max-width: 600px) {
  .am-about { padding: 40px 1.25rem; }
  .am-about-image-col { display: none; }
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.am-faq { background: #f7f9fb; padding: 60px 1.5rem; }
.am-faq-inner { max-width: 860px; margin: 0 auto; }
.am-faq-header { text-align: center; margin-bottom: 2.5rem; }
.am-faq-label { color: #6fcbd2; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-bottom: 0.5rem; }
.am-faq-title { font-family: 'DM Sans', sans-serif; font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; color: #253b63; margin-bottom: 0.6rem; }
.am-faq-subtitle { font-size: 1.05rem; color: #666; }
.am-faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.am-faq-item { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.am-faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: #253b63;
  text-align: left; gap: 1rem; transition: all 0.3s ease;
}
.am-faq-question:hover { background: #f5f7fa; }
.am-faq-question[aria-expanded="true"] { color: #92c83e; }
.am-faq-icon { color: #6fcbd2; margin-right: 0.6rem; }
.am-faq-chevron { flex-shrink: 0; color: #253b63; font-size: 0.85rem; transition: transform 0.3s ease; }
.am-faq-question[aria-expanded="true"] .am-faq-chevron { transform: rotate(180deg); }
.am-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; padding: 0 1.5rem; }
.am-faq-answer.open { max-height: 300px; padding: 0 1.5rem 1.25rem; }
.am-faq-answer p { font-size: 0.98rem; color: #555; line-height: 1.7; }
@media (max-width: 540px) {
  .am-faq { padding: 40px 1.25rem; }
  .am-faq-question { padding: 1rem 1.25rem; font-size: 0.95rem; }
}
