.elementor-3482 .elementor-element.elementor-element-3b92d08{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for text-editor, class: .elementor-element-b8802b2 *//* ============================================
   Mushroom Spores UK — Penis Envy Spores Section
   Blue #2872FA dominant | Purple #8b5cf6 accent
   Light background
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Lora:ital,wght@0,600;1,600&display=swap');

:root {
  --blue:        #2872FA;
  --blue-dark:   #1a5ee8;
  --blue-light:  #ebf1ff;
  --blue-pale:   #f4f7ff;
  --purple:      #8b5cf6;
  --purple-dark: #6d28d9;
  --purple-pale: #f3eeff;
  --ink:         #0f1624;
  --body:        #374151;
  --muted:       #6b7280;
  --border:      #e5e9f2;
  --white:       #ffffff;
  --grey-bg:     #f8f9fc;
}

.pe-wrap *,
.pe-wrap *::before,
.pe-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── OUTER WRAP ── */
.pe-wrap {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--body);
  line-height: 1.75;
  width: 100%;
  background: var(--grey-bg);
}

/* ── CONTAINER ── */
.pe-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 24px;
}

/* ── INTRO BLOCK ── */
.pe-intro {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 55%, var(--purple) 100%);
  border-radius: 18px;
  padding: 44px 48px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.pe-intro::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.pe-intro::after {
  content: '';
  position: absolute;
  bottom: -50px; left: 20px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

/* ── EYEBROW ── */
.pe-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

/* ── INTRO TITLE ── */
.pe-title {
  font-family: 'Lora', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.pe-title em { font-style: italic; color: rgba(255,255,255,0.88); }

/* ── INTRO DESC ── */
.pe-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.pe-desc:last-of-type { margin-bottom: 26px; }

.pe-desc a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.45);
}

.pe-desc a:hover { text-decoration-color: #fff; }

/* ── INTRO BUTTON ── */
.pe-btn {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--blue);
  background: #ffffff;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.pe-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* ── SECTION LABEL ── */
.pe-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.pe-section-label::before,
.pe-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.pe-section-label span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-align: center;
}

.pe-section-label em { font-style: italic; }

/* ── CARD GRID — 3 cols PC ── */
.pe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ── SINGLE CARD ── */
.pe-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.pe-card:hover {
  box-shadow: 0 10px 36px rgba(40,114,250,0.12);
  transform: translateY(-3px);
}

/* ── CARD IMAGE ── */
.pe-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--blue-pale);
  overflow: hidden;
}

.pe-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.pe-card:hover .pe-img-wrap img {
  transform: scale(1.04);
}

/* ── DOUBLE DENSITY BADGE ── */
.pe-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 50px;
  padding: 4px 12px;
  box-shadow: 0 2px 8px rgba(40,114,250,0.35);
}

/* ── ORIGINAL BADGE ── */
.pe-classic-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e40af;
  background: #dbeafe;
  border: 1px solid #bfdbfe;
  border-radius: 50px;
  padding: 4px 12px;
}

/* ── HYBRID BADGE ── */
.pe-hybrid-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5b21b6;
  background: var(--purple-pale);
  border: 1px solid #ddd6fe;
  border-radius: 50px;
  padding: 4px 12px;
}

/* ── CARD BODY ── */
.pe-card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* ── STRAIN TAG ── */
.pe-strain-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-dark);
  background: var(--purple-pale);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  align-self: flex-start;
}

/* ── STRAIN TITLE ── */
.pe-strain-title {
  font-family: 'Lora', serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.pe-strain-title em {
  font-style: italic;
  font-size: 13.5px;
  color: var(--muted);
}

/* ── STRAIN DESC ── */
.pe-strain-desc {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.75;
  flex: 1;
}

.pe-strain-desc em { font-style: italic; }

/* ── CARD BUTTON ── */
.pe-card-btn {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  border: 2px solid var(--blue-light);
  border-radius: 50px;
  padding: 9px 18px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  margin-top: auto;
}

.pe-card-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .pe-grid  { grid-template-columns: repeat(2, 1fr); }
  .pe-intro { padding: 36px 32px; }
}

@media (max-width: 480px) {
  .pe-container { padding: 40px 16px; }
  .pe-grid      { grid-template-columns: 1fr; }
  .pe-intro     { padding: 28px 22px; }
  .pe-section-label span { white-space: normal; }
}/* End custom CSS */