/* Plantapont – beszállítói storefront */
.pp-vs-bar {
  --pp-vs-accent: #2f7d60;
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid rgba(15, 42, 32, 0.1);
  box-shadow: 0 4px 16px rgba(15, 42, 32, 0.04);
}

.pp-vs-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.pp-vs-bar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  color: #0f2a20 !important;
  font-weight: 700;
}

.pp-vs-bar__brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pp-vs-accent);
}

.pp-vs-bar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.pp-vs-bar__links a {
  color: #1a2e24 !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.9rem;
}

.pp-vs-bar__links a:hover { color: var(--pp-vs-accent) !important; }

.pp-vs-bar__edit {
  color: var(--pp-vs-accent) !important;
  border: 1px solid rgba(47, 125, 96, 0.35);
  border-radius: 999px;
  padding: 4px 12px;
}

.pp-vs-hero {
  --pp-vs-accent: #2f7d60;
  position: relative;
  min-height: min(62vh, 480px);
  display: flex;
  align-items: flex-end;
  padding: 56px 0 48px;
  color: #fff;
  overflow: hidden;
}

.pp-vs-hero__media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.03);
}

.pp-vs-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 42, 32, 0.9) 0%, rgba(15, 42, 32, 0.5) 55%, rgba(15, 42, 32, 0.25) 100%);
}

.pp-vs-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.pp-vs-hero__brand {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fd4ba;
}

.pp-vs-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.pp-vs-hero__lead {
  margin: 0 0 20px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 40ch;
}

.pp-vs-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.pp-vs-hero__meta {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.pp-vs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--pp-vs-accent, #2f7d60);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  border: none;
  transition: filter 0.2s;
}

.pp-vs-btn:hover { filter: brightness(1.08); color: #fff !important; }

.pp-vs-btn--light {
  background: #fff;
  color: #0f2a20 !important;
}

.pp-vs-btn--light:hover { color: #0f2a20 !important; }

.pp-vs-section {
  padding: 48px 0;
}

.pp-vs-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.pp-vs-section__head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: #0f2a20;
  letter-spacing: -0.02em;
}

.pp-vs-link {
  font-weight: 700;
  color: #2f7d60 !important;
  text-decoration: none !important;
}

.pp-vs-about { background: #f3f7f4; }

.pp-vs-curator {
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(47, 125, 96, 0.25);
  background: rgba(92, 175, 144, 0.12);
}

.pp-vs-curator h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #2f7d60;
}

.pp-vs-curator p { margin: 0; color: #1a2e24; line-height: 1.55; }

.pp-vs-prose {
  color: #5a6f66;
  line-height: 1.65;
  max-width: 68ch;
  margin-bottom: 20px;
}

.pp-vs-video {
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 42, 32, 0.08);
}

.pp-vs-contact {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  color: #1a2e24;
}

.pp-vs-contact li { margin-bottom: 6px; }

.pp-vs-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.pp-vs-product {
  display: block;
  text-decoration: none !important;
  color: #0f2a20 !important;
}

.pp-vs-product__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #f3f7f4;
  overflow: hidden;
}

.pp-vs-product img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.pp-vs-product:hover img { transform: scale(1.03); }

.pp-vs-product strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.3;
}

.pp-vs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.pp-vs-gallery-grid figure { margin: 0; overflow: hidden; border-radius: 8px; }

.pp-vs-gallery-grid img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.pp-vs-recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.pp-vs-recipe {
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: #0f2a20 !important;
  border: 1px solid rgba(15, 42, 32, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.pp-vs-recipe img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.pp-vs-recipe div { padding: 14px; }

.pp-vs-recipe strong { display: block; margin-bottom: 4px; }

.pp-vs-recipe span {
  display: block;
  font-size: 0.85rem;
  color: #5a6f66;
  line-height: 1.4;
}

.pp-vs-cta {
  --pp-vs-accent: #2f7d60;
  padding: 48px 0;
  text-align: center;
  background: linear-gradient(180deg, #0f2a20, #1a3d2e);
  color: #fff;
}

.pp-vs-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  color: #fff;
}

.pp-vs-cta p {
  margin: 0 auto 18px;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.8);
}

/* Lista vendor skin */
.pp-vs-list-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 14px 0;
}

.pp-vs-list-head img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.pp-vs-list-head h1 {
  margin: 0;
  font-size: 1.45rem;
  color: #0f2a20;
}

.pp-vs-list-head p {
  margin: 2px 0 0;
  color: #5a6f66;
  font-size: 0.92rem;
}

/* PDP bridge */
.pp-vs-pdp-strip {
  --pp-vs-accent: #2f7d60;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 14px;
  border: 1px solid rgba(47, 125, 96, 0.25);
  background: linear-gradient(120deg, rgba(92, 175, 144, 0.12), #fff);
}

.pp-vs-pdp-strip img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pp-vs-accent);
}

.pp-vs-pdp-strip strong {
  display: block;
  color: #0f2a20;
}

.pp-vs-pdp-strip span {
  display: block;
  font-size: 0.85rem;
  color: #5a6f66;
}

.pp-vs-pdp-strip a {
  font-weight: 700;
  color: var(--pp-vs-accent) !important;
  text-decoration: none !important;
}

/* Editor */
.pp-vs-editor {
  border: 1px solid rgba(15, 42, 32, 0.1);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
}

.pp-vs-editor__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.pp-vs-editor__toolbar label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin: 0;
}

.pp-vs-editor__preview {
  font-weight: 700;
  color: #2f7d60 !important;
}

.pp-vs-editor__hero-img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  background: #e8f2ec;
  margin-bottom: 8px;
}

.pp-vs-editor__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pp-vs-editor__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(15, 42, 32, 0.08);
}

.pp-vs-editor__toggle {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  cursor: pointer;
  flex: 1;
}

.pp-vs-editor__toggle strong { display: block; color: #0f2a20; }

.pp-vs-editor__toggle small { color: #5a6f66; }

.pp-vs-editor__moves {
  display: inline-flex;
  gap: 4px;
}

.pp-vs-editor__moves button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(15, 42, 32, 0.15);
  border-radius: 8px;
  background: #f3f7f4;
  cursor: pointer;
}

@media (max-width: 640px) {
  .pp-vs-hero { min-height: 52vh; padding: 40px 0 32px; }
  .pp-vs-section { padding: 36px 0; }
}
