/*
Theme Name: Porcelain's Elixir
Theme URI: https://porcelainselixir.com
Author: Porcelain's Elixir
Author URI: https://porcelainselixir.com
Description: Luxury botanical hair care theme - A premium theme for Porcelain's Elixir featuring elegant design with gold accents on deep forest green.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: porcelains-elixir
Tags: e-commerce, one-column, custom-colors, custom-menu, featured-images, theme-options, translation-ready
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
*/

/* ===== CSS Variables ===== */
:root {
  --pe-primary: #0a3d2e;
  --pe-primary-light: #0d4a38;
  --pe-primary-dark: #072920;
  --pe-gold: #c9b896;
  --pe-gold-dark: #a89670;
  --pe-gold-light: #d4c4a8;
  --pe-white: #ffffff;
  --pe-font-serif: 'Playfair Display', Georgia, serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--pe-font-serif);
  background-color: var(--pe-primary);
  color: var(--pe-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--pe-font-serif);
  font-weight: 300;
  color: var(--pe-gold);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 3rem; }
h3 { font-size: 1.5rem; font-weight: 500; }
h4 { font-size: 1.25rem; }

p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.75;
}

/* ===== Container ===== */
.pe-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pe-container-sm {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Navigation ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 61, 46, 0.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(201, 184, 150, 0.2);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 3rem;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a,
.nav-menu button {
  color: var(--pe-gold);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu button:hover {
  color: var(--pe-white);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--pe-gold);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--pe-primary);
    border-top: 1px solid rgba(201, 184, 150, 0.2);
    padding: 1rem 1.5rem;
  }

  .nav-menu.active a,
  .nav-menu.active button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 0;
  }
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(to right, var(--pe-gold), var(--pe-gold-dark));
  color: var(--pe-primary);
  font-family: var(--pe-font-serif);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(to right, var(--pe-gold-light), #b8a680);
  color: var(--pe-primary);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--pe-gold);
  font-family: var(--pe-font-serif);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--pe-gold);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(201, 184, 150, 0.1);
}

.btn-disabled {
  background: rgba(128, 128, 128, 0.5) !important;
  color: rgba(255, 255, 255, 0.5) !important;
  cursor: not-allowed !important;
}

/* ===== Section Styles ===== */
.section {
  padding: 6rem 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 300;
  color: var(--pe-gold);
  text-align: center;
  margin-bottom: 1rem;
}

.section-divider {
  width: 6rem;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--pe-gold), transparent);
  margin: 0 auto 4rem;
}

/* ===== Hero Section ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg-blur {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.hero-bg-blur::before {
  content: '';
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  background: var(--pe-gold);
  border-radius: 50%;
  filter: blur(48px);
}

.hero-bg-blur::after {
  content: '';
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: var(--pe-gold);
  border-radius: 50%;
  filter: blur(48px);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 56rem;
}

.hero-logo {
  width: 100%;
  max-width: 32rem;
  margin: 0 auto 3rem;
}

.hero-tagline {
  font-size: 1.5rem;
  color: var(--pe-gold);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--pe-gold);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== Benefits Section ===== */
.benefits-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--pe-primary), var(--pe-primary-light));
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  text-align: center;
  padding: 2rem;
  background: rgba(10, 61, 46, 0.5);
  border: 1px solid rgba(201, 184, 150, 0.2);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(201, 184, 150, 0.4);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, rgba(201, 184, 150, 0.2), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pe-gold);
}

.benefit-title {
  font-size: 1.25rem;
  color: var(--pe-gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.benefit-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.75;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  text-align: center;
}

@media (max-width: 640px) {
  .stats-row {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  padding: 1.5rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(201, 184, 150, 0.05);
}

.stat-number {
  font-size: 3rem;
  font-weight: 300;
  color: var(--pe-gold);
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
  color: var(--pe-gold);
}

/* ===== How To Use Section ===== */
.how-to-use-section {
  padding: 6rem 0;
  background: var(--pe-primary-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-item {
  position: relative;
}

.step-number {
  font-size: 6rem;
  font-weight: 300;
  color: rgba(201, 184, 150, 0.1);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  line-height: 1;
}

.step-content {
  position: relative;
  z-index: 10;
  padding-top: 2rem;
}

.step-title {
  font-size: 1.5rem;
  color: var(--pe-gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.step-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.75;
}

.tip-box {
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(10, 61, 46, 0.5);
  border: 1px solid rgba(201, 184, 150, 0.2);
  border-radius: 2px;
  text-align: center;
}

.tip-text {
  color: var(--pe-gold);
  font-style: italic;
  font-size: 1.125rem;
}

/* ===== Shop Section ===== */
.shop-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--pe-primary-light), var(--pe-primary));
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  position: relative;
  padding: 2rem;
  background: rgba(10, 61, 46, 0.5);
  border: 1px solid rgba(201, 184, 150, 0.2);
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: scale(1.05);
  border-color: rgba(201, 184, 150, 0.4);
}

.product-card.popular {
  background: linear-gradient(to bottom, rgba(201, 184, 150, 0.1), transparent);
  border-color: var(--pe-gold);
  box-shadow: 0 10px 40px rgba(201, 184, 150, 0.1);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--pe-gold);
  color: var(--pe-primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.product-image {
  width: 8rem;
  height: 10rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(to bottom, rgba(201, 184, 150, 0.2), transparent);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-name {
  font-size: 1.5rem;
  color: var(--pe-gold);
  margin-bottom: 0.25rem;
}

.product-size {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 2rem;
  color: var(--pe-white);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.product-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.trust-badge svg {
  color: var(--pe-gold);
  width: 14px;
  height: 14px;
}

/* ===== About Section ===== */
.about-section {
  padding: 6rem 0;
  background: var(--pe-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-divider {
  width: 6rem;
  height: 2px;
  background: linear-gradient(to right, var(--pe-gold), transparent);
  margin-bottom: 2rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  aspect-ratio: 1;
  background: linear-gradient(to bottom right, rgba(201, 184, 150, 0.2), transparent);
  border-radius: 2px;
  border: 1px solid rgba(201, 184, 150, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.about-image img {
  width: 75%;
  height: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.about-quote {
  color: var(--pe-gold);
  font-size: 1.25rem;
  font-style: italic;
  text-align: center;
}

.about-image-shadow {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(201, 184, 150, 0.2);
  border-radius: 2px;
  z-index: -1;
}

/* ===== Footer ===== */
.site-footer {
  padding: 4rem 0;
  background: var(--pe-primary-dark);
  border-top: 1px solid rgba(201, 184, 150, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand img {
  height: 4rem;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(201, 184, 150, 0.3);
  color: var(--pe-gold);
  font-size: 0.875rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(201, 184, 150, 0.1);
}

.footer-heading {
  color: var(--pe-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-links button {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--pe-gold);
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 184, 150, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--pe-gold);
}

/* ===== Ingredients Page ===== */
.ingredients-header {
  background: var(--pe-primary-dark);
  border-bottom: 1px solid rgba(201, 184, 150, 0.2);
  padding: 1.5rem 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pe-gold);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--pe-white);
}

.ingredients-hero {
  padding: 4rem 0;
  text-align: center;
}

.ingredients-icon {
  color: var(--pe-gold);
  margin-bottom: 1.5rem;
}

.ingredients-intro {
  font-size: 1.25rem;
  max-width: 48rem;
  margin: 0 auto;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

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

@media (max-width: 640px) {
  .ingredients-grid {
    grid-template-columns: 1fr;
  }
}

.ingredient-card {
  padding: 2rem;
  background: linear-gradient(to bottom right, var(--pe-primary-light), var(--pe-primary));
  border: 1px solid rgba(201, 184, 150, 0.2);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.ingredient-card:hover {
  border-color: rgba(201, 184, 150, 0.4);
}

.ingredient-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ingredient-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(201, 184, 150, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pe-gold);
}

.ingredient-name {
  font-size: 1.5rem;
  color: var(--pe-gold);
  font-weight: 500;
  margin: 0;
}

.ingredient-benefits {
  list-style: none;
}

.ingredient-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.ingredient-benefits li::before {
  content: "\2022";
  color: var(--pe-gold);
  font-size: 0.5rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.ingredients-cta {
  padding: 4rem 0;
}

.cta-box {
  padding: 3rem;
  background: linear-gradient(to bottom right, rgba(201, 184, 150, 0.1), transparent);
  border: 1px solid rgba(201, 184, 150, 0.2);
  border-radius: 2px;
  text-align: center;
}

.cta-box h2 {
  margin-bottom: 1rem;
}

.cta-box p {
  max-width: 32rem;
  margin: 0 auto 2rem;
}

/* ===== WooCommerce Overrides ===== */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
#place_order {
  background: linear-gradient(to right, var(--pe-gold), var(--pe-gold-dark)) !important;
  color: var(--pe-primary) !important;
  font-family: var(--pe-font-serif) !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 1rem 2rem !important;
  border: none !important;
  border-radius: 2px !important;
  transition: all 0.3s ease !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
#place_order:hover {
  background: linear-gradient(to right, var(--pe-gold-light), #b8a680) !important;
  color: var(--pe-primary) !important;
}

.woocommerce a.button.disabled,
.woocommerce button.button.disabled,
.woocommerce a.button:disabled,
.woocommerce button.button:disabled {
  background: rgba(128, 128, 128, 0.5) !important;
  color: rgba(255, 255, 255, 0.5) !important;
  cursor: not-allowed !important;
}

.woocommerce div.product .product_title {
  color: var(--pe-gold);
  font-family: var(--pe-font-serif);
  font-weight: 300;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
  color: var(--pe-white) !important;
  font-size: 2rem !important;
  font-weight: 300 !important;
}

.woocommerce ul.products li.product {
  background: rgba(10, 61, 46, 0.5);
  border: 1px solid rgba(201, 184, 150, 0.2);
  padding: 2rem;
  transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
  transform: scale(1.05);
  border-color: rgba(201, 184, 150, 0.4);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--pe-gold);
  font-family: var(--pe-font-serif);
}

/* Stripe Payment Form */
.wc-stripe-elements-field,
.wc-stripe-iban-element-field {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(201, 184, 150, 0.5) !important;
  border-radius: 2px !important;
  padding: 12px !important;
}

/* Checkout Form */
.woocommerce-checkout {
  background-color: var(--pe-primary);
}

.woocommerce form .form-row label {
  color: var(--pe-gold);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 184, 150, 0.3);
  color: var(--pe-white);
  border-radius: 2px;
  padding: 0.75rem;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--pe-gold);
  outline: none;
}

/* Cart */
.woocommerce table.cart th,
.woocommerce table.cart td {
  border-color: rgba(201, 184, 150, 0.2);
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-gold { color: var(--pe-gold); }
.text-white { color: var(--pe-white); }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
