.tifola-pseo-faq-q {
  font-size: 1.05rem;
  color: #333;
  margin: 1rem 0 0.35rem;
}

.page-pseo .tifola-loc-eyebrow {
  opacity: 0.95;
}

.tifola-price-note {
  font-size: 0.95rem;
  color: #444;
  margin-top: 0.65rem;
}

.tifola-price-cta .tifola-btn {
  margin: 0.25rem 0.35rem 0.25rem 0;
}

/* —— Vendor hero (full-bleed photo) —— */
.tifola-vendor-hero {
  position: relative;
  overflow: hidden;
  text-align: left;
  padding: 0;
  min-height: min(72vh, 520px);
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #1f4a02 0%, #2d6502 45%, #c24e0e 100%);
}

.tifola-vendor-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tifola-vendor-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-height: none;
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: none;
  transform: scale(1.04);
  animation: tifola-vendor-kenburns 18s ease-out forwards;
}

.tifola-vendor-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 28, 4, 0.25) 0%, rgba(12, 28, 4, 0.55) 42%, rgba(12, 28, 4, 0.88) 100%),
    linear-gradient(90deg, rgba(45, 101, 2, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.tifola-vendor-hero--photo .tifola-vendor-hero-shade {
  background:
    linear-gradient(180deg, rgba(8, 18, 2, 0.2) 0%, rgba(8, 18, 2, 0.45) 38%, rgba(8, 18, 2, 0.9) 100%),
    linear-gradient(105deg, rgba(45, 101, 2, 0.45) 0%, transparent 50%);
}

.tifola-vendor-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 3.25rem 1.15rem 2.35rem;
  animation: tifola-vendor-rise 0.7s ease-out both;
}

.tifola-vendor-hero .tifola-loc-eyebrow {
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.88);
}

.tifola-vendor-hero h1 {
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.tifola-vendor-hero .tagline {
  max-width: 34rem;
  margin-bottom: 1.15rem;
  font-size: 1.02rem;
  opacity: 0.94;
}

.tifola-vendor-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 0 0 0.85rem;
}

.tifola-vendor-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  font-size: 0.92rem;
}

.tifola-vendor-stars {
  color: #ffc857;
  letter-spacing: 0.02em;
  font-size: 0.82rem;
}

.tifola-vendor-rating strong {
  font-weight: 700;
}

.tifola-vendor-pill {
  display: inline-block;
  padding: 0.32rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tifola-vendor-pill--price {
  background: rgba(231, 99, 24, 0.92);
  border-color: transparent;
}

.tifola-vendor-hero .tifola-hero-cta {
  justify-content: flex-start;
}

.tifola-vendor-hero .tifola-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tifola-vendor-hero .tifola-btn:hover {
  transform: translateY(-2px);
}

@keyframes tifola-vendor-kenburns {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

@keyframes tifola-vendor-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tifola-vendor-hero-bg img,
  .tifola-vendor-hero-inner,
  .tifola-vendor-pkg {
    animation: none !important;
  }
}

/* —— Vendor packages —— */
.tifola-vendor-section-head {
  margin-bottom: 1rem;
}

.tifola-vendor-section-head h2 {
  margin-bottom: 0.35rem;
}

.tifola-vendor-section-head p {
  margin: 0;
  color: #555;
  font-size: 0.98rem;
}

.tifola-vendor-pkg-grid {
  display: grid;
  gap: 0.95rem;
  margin-top: 0.35rem;
}

.tifola-vendor-pkg {
  background: #fff;
  border: 1px solid #e4ebe0;
  border-left: 4px solid #2d6502;
  padding: 1.1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  animation: tifola-vendor-rise 0.55s ease-out both;
}

.tifola-vendor-pkg:nth-child(2) { animation-delay: 0.06s; }
.tifola-vendor-pkg:nth-child(3) { animation-delay: 0.12s; }
.tifola-vendor-pkg:nth-child(4) { animation-delay: 0.18s; }

.tifola-vendor-pkg:hover {
  border-color: #c5d8b8;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(45, 101, 2, 0.08);
}

.tifola-vendor-pkg-top h3 {
  margin: 0.15rem 0 0;
  font-size: 1.12rem;
  color: #1a1a1a;
  line-height: 1.3;
}

.tifola-vendor-pkg-type {
  margin: 0;
  font-size: 0.72rem;
  color: #2d6502;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.tifola-vendor-pkg-prices {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tifola-vendor-pkg-prices li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 5.5rem;
  padding: 0.45rem 0.65rem;
  background: #f7faf5;
  font-size: 0.8rem;
  color: #666;
}

.tifola-vendor-pkg-prices strong {
  color: #2d6502;
  font-size: 1.15rem;
  font-weight: 700;
}

.tifola-vendor-view-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  margin-top: auto;
  align-self: flex-start;
}

/* —— Sticky order bar —— */
.page-pseo-vendor {
  padding-bottom: 5.5rem;
}

.page-pseo-vendor .position_absolute_for_mobile1 {
  display: none !important;
}

.tifola-vendor-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid #e4ebe0;
  backdrop-filter: blur(10px);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.08);
  animation: tifola-vendor-rise 0.45s ease-out 0.25s both;
}

.tifola-vendor-sticky-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.tifola-vendor-sticky-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.tifola-vendor-sticky-copy strong {
  font-size: 0.95rem;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tifola-vendor-sticky-copy span {
  font-size: 0.8rem;
  color: #c24e0e;
  font-weight: 600;
}

.tifola-vendor-sticky-actions {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.tifola-vendor-sticky-actions .tifola-btn {
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
  text-decoration: none;
  margin: 0;
}

/* —— Area vendor cards —— */
.tifola-vendor-card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.tifola-vendor-card {
  background: #fff;
  border: 1px solid #e8eee4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tifola-vendor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(45, 101, 2, 0.08);
}
.tifola-vendor-card-media {
  display: block;
  background: #eef6e8;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.tifola-vendor-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.tifola-vendor-card:hover .tifola-vendor-card-media img {
  transform: scale(1.04);
}
.tifola-vendor-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d6502;
  font-size: 2rem;
}
.tifola-vendor-card-body {
  padding: 0.9rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.tifola-vendor-card-body h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}
.tifola-vendor-card-body h3 a {
  color: #1a1a1a;
  text-decoration: none;
}
.tifola-vendor-card-body h3 a:hover {
  color: #2d6502;
}
.tifola-vendor-card-price {
  margin: 0;
  color: #c24e0e;
  font-size: 0.95rem;
}
.tifola-vendor-card-menus {
  margin: 0;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.4;
}
.tifola-vendor-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.65rem;
}
.tifola-vendor-card-actions .tifola-btn {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  text-decoration: none;
}

@media (min-width: 640px) {
  .tifola-vendor-pkg-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tifola-vendor-card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tifola-vendor-hero {
    min-height: min(68vh, 560px);
  }
}
@media (min-width: 960px) {
  .tifola-vendor-card-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .tifola-vendor-hero {
    min-height: 58vh;
    text-align: center;
  }
  .tifola-vendor-hero-inner {
    padding: 2.6rem 1rem 1.85rem;
  }
  .tifola-vendor-hero-meta,
  .tifola-vendor-hero .tifola-hero-cta {
    justify-content: center;
  }
  .tifola-vendor-hero .tagline {
    margin-left: auto;
    margin-right: auto;
  }
  .tifola-vendor-sticky-copy strong {
    max-width: 9.5rem;
  }
  .tifola-vendor-sticky-actions .tifola-btn {
    padding: 0.5rem 0.7rem;
    font-size: 0.82rem;
  }
  .tifola-vendor-card-actions .tifola-btn {
    flex: 1;
    text-align: center;
  }
  .tifola-vendor-view-menu {
    width: 100%;
    align-self: stretch;
  }
}
