/*
Theme Name: PhotoEZ Theme
Theme URI: https://photoezplugin.com
Author: PhotoEZ
Author URI: https://photoezplugin.com
Description: A bold, modern WordPress theme built for photographers using the PhotoEZ plugin suite. Includes full Elementor, WooCommerce, and PhotoEZ Booking & Contracts addon support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: photoez-theme
Tags: photography, portfolio, elementor, woocommerce, one-column, full-width-template, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* =============================================
   PHOTOEZ THEME — CSS DESIGN SYSTEM
   ============================================= */

:root {
  /* Brand Colors */
  --pez-primary:       #E8315B;   /* Vibrant coral-red */
  --pez-primary-dark:  #C0204A;
  --pez-primary-light: #FF6B8A;
  --pez-secondary:     #7C3AED;   /* Rich purple */
  --pez-secondary-dark:#5B21B6;
  --pez-secondary-light:#A78BFA;
  --pez-accent:        #F59E0B;   /* Amber gold */
  --pez-accent-dark:   #D97706;

  /* Neutrals */
  --pez-dark:          #111118;
  --pez-dark-2:        #1C1C27;
  --pez-dark-3:        #2A2A3A;
  --pez-text:          #1A1A2E;
  --pez-text-muted:    #6B7280;
  --pez-border:        #E5E7EB;
  --pez-light:         #F8F7FF;
  --pez-white:         #FFFFFF;

  /* Typography */
  --pez-font-heading:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --pez-font-body:     'DM Sans', 'Inter', -apple-system, sans-serif;
  --pez-font-label:    'Montserrat', 'DM Sans', sans-serif;

  /* Font Sizes (fluid) */
  --pez-text-xs:    clamp(0.75rem,  1.5vw, 0.875rem);
  --pez-text-sm:    clamp(0.875rem, 1.8vw, 1rem);
  --pez-text-base:  clamp(1rem,     2vw,   1.125rem);
  --pez-text-lg:    clamp(1.125rem, 2.2vw, 1.25rem);
  --pez-text-xl:    clamp(1.25rem,  2.5vw, 1.5rem);
  --pez-text-2xl:   clamp(1.5rem,   3vw,   2rem);
  --pez-text-3xl:   clamp(2rem,     4vw,   3rem);
  --pez-text-4xl:   clamp(2.5rem,   5vw,   4rem);
  --pez-text-hero:  clamp(3rem,     7vw,   6rem);

  /* Spacing */
  --pez-space-xs:  0.5rem;
  --pez-space-sm:  1rem;
  --pez-space-md:  1.5rem;
  --pez-space-lg:  2.5rem;
  --pez-space-xl:  4rem;
  --pez-space-2xl: 6rem;
  --pez-space-3xl: 8rem;

  /* Radius */
  --pez-radius-sm: 4px;
  --pez-radius-md: 8px;
  --pez-radius-lg: 16px;
  --pez-radius-xl: 24px;
  --pez-radius-full: 9999px;

  /* Shadows */
  --pez-shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --pez-shadow-md: 0 4px 20px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  --pez-shadow-lg: 0 10px 40px rgba(0,0,0,0.15), 0 4px 16px rgba(0,0,0,0.08);
  --pez-shadow-xl: 0 20px 60px rgba(0,0,0,0.20), 0 8px 24px rgba(0,0,0,0.10);
  --pez-shadow-glow-primary: 0 0 30px rgba(232,49,91,0.35);
  --pez-shadow-glow-secondary: 0 0 30px rgba(124,58,237,0.35);

  /* Transitions */
  --pez-transition-fast: 150ms ease;
  --pez-transition-base: 300ms ease;
  --pez-transition-slow: 600ms ease;

  /* Layout */
  --pez-container-sm:  640px;
  --pez-container-md:  768px;
  --pez-container-lg:  1024px;
  --pez-container-xl:  1280px;
  --pez-container-2xl: 1440px;

  /* Header */
  --pez-header-height: 120px;
}

/* =============================================
   RESET & BASE
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--pez-font-body);
  font-size: var(--pez-text-base);
  color: var(--pez-text);
  background-color: var(--pez-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }

a {
  color: var(--pez-primary);
  text-decoration: none;
  transition: color var(--pez-transition-fast);
}
a:hover { color: var(--pez-primary-dark); }

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--pez-font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--pez-text);
  letter-spacing: -0.02em;
}
h1 { font-size: var(--pez-text-4xl); }
h2 { font-size: var(--pez-text-3xl); }
h3 { font-size: var(--pez-text-2xl); }
h4 { font-size: var(--pez-text-xl); }
h5 { font-size: var(--pez-text-lg); }
h6 { font-size: var(--pez-text-base); }

p { margin-bottom: 1em; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5em; margin-bottom: 1em; }
li { margin-bottom: 0.25em; }

strong, b { font-weight: 700; }
em, i { font-style: italic; }

blockquote {
  border-left: 4px solid var(--pez-primary);
  padding: var(--pez-space-sm) var(--pez-space-md);
  margin: var(--pez-space-md) 0;
  background: var(--pez-light);
  border-radius: 0 var(--pez-radius-md) var(--pez-radius-md) 0;
  font-style: italic;
  font-family: var(--pez-font-heading);
  font-size: var(--pez-text-lg);
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */

.pez-container {
  width: 100%;
  max-width: var(--pez-container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pez-space-md);
  padding-right: var(--pez-space-md);
}

.pez-section {
  padding-top: var(--pez-space-2xl);
  padding-bottom: var(--pez-space-2xl);
}

.pez-section--sm {
  padding-top: var(--pez-space-xl);
  padding-bottom: var(--pez-space-xl);
}

.pez-section--dark {
  background-color: var(--pez-dark);
  color: var(--pez-white);
}

.pez-section--dark h1,
.pez-section--dark h2,
.pez-section--dark h3,
.pez-section--dark h4 {
  color: var(--pez-white);
}

/* =============================================
   HEADER
   ============================================= */

.pez-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--pez-header-height);
  background: rgba(17, 17, 24, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--pez-transition-base), box-shadow var(--pez-transition-base);
}

.pez-header.scrolled {
  background: rgba(17, 17, 24, 0.98);
  box-shadow: var(--pez-shadow-lg);
}

.pez-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--pez-space-xl);
  max-width: var(--pez-container-2xl);
  margin: 0 auto;
}

.pez-nav {
  display: flex;
  align-items: center;
  gap: var(--pez-space-md);
  height: 100%;
}

/* =============================================
   CART ICON
   ============================================= */

.pez-cart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: rgba(255,255,255,0.80);
  transition: color var(--pez-transition-fast);
  margin-left: var(--pez-space-sm);
  padding: 6px;
}

.pez-cart-icon:hover { color: var(--pez-white); }

.pez-cart-count {
  position: absolute;
  top: -2px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  background: var(--pez-primary);
  color: #fff;
  font-family: var(--pez-font-label);
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--pez-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity var(--pez-transition-fast), transform var(--pez-transition-fast);
}

.pez-cart-count.has-items {
  opacity: 1;
  transform: scale(1);
}

.pez-header__logo {
  display: flex;
  align-items: center;
  gap: var(--pez-space-xs);
  text-decoration: none;
}

.pez-header__logo img {
  height: 40px;
  width: auto;
}

.pez-header__logo-text {
  font-family: var(--pez-font-heading);
  font-size: var(--pez-text-xl);
  font-weight: 700;
  color: var(--pez-white);
  letter-spacing: -0.03em;
}

.pez-header__logo-text span {
  color: var(--pez-primary);
}

.pez-nav {
  display: flex;
  align-items: center;
  gap: var(--pez-space-md);
}

.pez-nav a {
  font-family: var(--pez-font-label);
  font-size: var(--pez-text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.80);
  transition: color var(--pez-transition-fast);
  padding: 0.25rem 0;
  position: relative;
}

.pez-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pez-primary);
  transition: width var(--pez-transition-base);
}

.pez-nav a:hover,
.pez-nav a.current-menu-item {
  color: var(--pez-white);
}

.pez-nav a:hover::after,
.pez-nav a.current-menu-item::after {
  width: 100%;
}

/* Mobile nav toggle */
.pez-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.pez-nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--pez-white);
  transition: transform var(--pez-transition-base), opacity var(--pez-transition-base);
  display: block;
}

/* Mobile nav */
.pez-mobile-nav {
  display: none;
  position: fixed;
  top: var(--pez-header-height);
  left: 0;
  right: 0;
  background: var(--pez-dark);
  padding: var(--pez-space-md) var(--pez-space-lg);
  z-index: 9998;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pez-mobile-nav.open { display: block; }

.pez-mobile-nav a {
  display: block;
  padding: var(--pez-space-sm) 0;
  font-family: var(--pez-font-label);
  font-size: var(--pez-text-base);
  color: rgba(255,255,255,0.80);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pez-mobile-nav a:last-child { border-bottom: none; }
.pez-mobile-nav a:hover { color: var(--pez-white); }

/* =============================================
   BUTTONS
   ============================================= */

.pez-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--pez-font-label);
  font-size: var(--pez-text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.875em 2em;
  border-radius: var(--pez-radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--pez-transition-base);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.pez-btn--primary {
  background: linear-gradient(135deg, var(--pez-primary), var(--pez-secondary));
  color: var(--pez-white);
  box-shadow: 0 4px 20px rgba(232,49,91,0.4);
}

.pez-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,49,91,0.5);
  color: var(--pez-white);
}

.pez-btn--secondary {
  background: transparent;
  color: var(--pez-white);
  border-color: rgba(255,255,255,0.35);
}

.pez-btn--secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  color: var(--pez-white);
}

.pez-btn--outline {
  background: transparent;
  color: var(--pez-primary);
  border-color: var(--pez-primary);
}

.pez-btn--outline:hover {
  background: var(--pez-primary);
  color: var(--pez-white);
}

.pez-btn--dark {
  background: var(--pez-dark);
  color: var(--pez-white);
}

.pez-btn--dark:hover {
  background: var(--pez-dark-2);
  color: var(--pez-white);
  transform: translateY(-2px);
  box-shadow: var(--pez-shadow-lg);
}

.pez-btn--lg {
  font-size: var(--pez-text-base);
  padding: 1.1em 2.5em;
}

.pez-btn--sm {
  font-size: var(--pez-text-xs);
  padding: 0.65em 1.75em;
}

/* =============================================
   CARDS
   ============================================= */

.pez-card {
  background: var(--pez-white);
  border-radius: var(--pez-radius-xl);
  overflow: hidden;
  box-shadow: var(--pez-shadow-md);
  transition: transform var(--pez-transition-base), box-shadow var(--pez-transition-base);
}

.pez-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pez-shadow-xl);
}

.pez-card__image {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.pez-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--pez-transition-slow);
}

.pez-card:hover .pez-card__image img { transform: scale(1.05); }

.pez-card__body {
  padding: var(--pez-space-md) var(--pez-space-lg);
}

.pez-card__tag {
  font-family: var(--pez-font-label);
  font-size: var(--pez-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pez-primary);
  margin-bottom: 0.5rem;
  display: block;
}

/* =============================================
   SECTION LABELS & HEADINGS
   ============================================= */

.pez-eyebrow {
  font-family: var(--pez-font-label);
  font-size: var(--pez-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pez-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.pez-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--pez-primary);
  flex-shrink: 0;
}

.pez-section-title {
  font-family: var(--pez-font-heading);
  font-size: var(--pez-text-3xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--pez-space-md);
}

.pez-section-title--light { color: var(--pez-white); }

.pez-gradient-text {
  background: linear-gradient(135deg, var(--pez-primary), var(--pez-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   BADGES & TAGS
   ============================================= */

.pez-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25em 0.75em;
  border-radius: var(--pez-radius-full);
  font-family: var(--pez-font-label);
  font-size: var(--pez-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pez-badge--primary { background: rgba(232,49,91,0.12); color: var(--pez-primary); }
.pez-badge--secondary { background: rgba(124,58,237,0.12); color: var(--pez-secondary); }
.pez-badge--accent { background: rgba(245,158,11,0.12); color: var(--pez-accent-dark); }
.pez-badge--success { background: rgba(16,185,129,0.12); color: #059669; }

/* =============================================
   FORM ELEMENTS
   ============================================= */

.pez-form-group { margin-bottom: var(--pez-space-md); }
.pez-label {
  display: block;
  font-family: var(--pez-font-label);
  font-size: var(--pez-text-sm);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--pez-text);
}

.pez-input,
.pez-select,
.pez-textarea {
  width: 100%;
  padding: 0.85em 1.1em;
  border: 1.5px solid var(--pez-border);
  border-radius: var(--pez-radius-md);
  font-family: var(--pez-font-body);
  font-size: var(--pez-text-base);
  color: var(--pez-text);
  background: var(--pez-white);
  transition: border-color var(--pez-transition-fast), box-shadow var(--pez-transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.pez-input:focus,
.pez-select:focus,
.pez-textarea:focus {
  outline: none;
  border-color: var(--pez-primary);
  box-shadow: 0 0 0 3px rgba(232,49,91,0.15);
}

.pez-textarea { resize: vertical; min-height: 140px; }

/* =============================================
   FOOTER
   ============================================= */

.pez-footer {
  background: var(--pez-dark);
  color: rgba(255,255,255,0.65);
  padding: var(--pez-space-3xl) 0 var(--pez-space-lg);
}

.pez-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--pez-space-xl);
  margin-bottom: var(--pez-space-xl);
}

.pez-footer__brand-name {
  font-family: var(--pez-font-heading);
  font-size: var(--pez-text-2xl);
  color: var(--pez-white);
  margin-bottom: var(--pez-space-sm);
}

.pez-footer__tagline {
  font-size: var(--pez-text-sm);
  line-height: 1.7;
  margin-bottom: var(--pez-space-md);
}

.pez-footer__social {
  display: flex;
  gap: var(--pez-space-sm);
}

.pez-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--pez-radius-full);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  transition: background var(--pez-transition-fast), color var(--pez-transition-fast);
  font-size: 1rem;
}

.pez-footer__social a:hover {
  background: var(--pez-primary);
  color: var(--pez-white);
}

.pez-footer__heading {
  font-family: var(--pez-font-label);
  font-size: var(--pez-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pez-white);
  margin-bottom: var(--pez-space-md);
}

.pez-footer__links { list-style: none; padding: 0; }
.pez-footer__links li { margin-bottom: 0.6rem; }
.pez-footer__links a {
  color: rgba(255,255,255,0.55);
  font-size: var(--pez-text-sm);
  transition: color var(--pez-transition-fast);
}
.pez-footer__links a:hover { color: var(--pez-primary); }

.pez-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--pez-space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--pez-space-sm);
  font-size: var(--pez-text-xs);
  color: rgba(255,255,255,0.35);
}

.pez-footer__bottom a {
  color: rgba(255,255,255,0.35);
  transition: color var(--pez-transition-fast);
}
.pez-footer__bottom a:hover { color: var(--pez-primary); }

/* =============================================
   HERO SECTIONS
   ============================================= */

.pez-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--pez-dark);
  padding-top: var(--pez-header-height);
}

.pez-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pez-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.pez-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(17,17,24,0.92) 0%,
    rgba(124,58,237,0.25) 50%,
    rgba(232,49,91,0.20) 100%);
  z-index: 1;
}

.pez-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.pez-hero__title {
  font-family: var(--pez-font-heading);
  font-size: var(--pez-text-hero);
  font-weight: 700;
  color: var(--pez-white);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--pez-space-md);
}

.pez-hero__subtitle {
  font-size: var(--pez-text-xl);
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: var(--pez-space-lg);
  max-width: 580px;
}

.pez-hero__actions {
  display: flex;
  gap: var(--pez-space-sm);
  flex-wrap: wrap;
}

/* Decorative orbs */
.pez-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.pez-orb--primary {
  background: rgba(232,49,91,0.25);
  width: 600px; height: 600px;
}
.pez-orb--secondary {
  background: rgba(124,58,237,0.20);
  width: 500px; height: 500px;
}

/* =============================================
   GALLERY / PORTFOLIO GRID
   ============================================= */

.pez-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.pez-gallery-grid--masonry {
  columns: 3;
  column-gap: 1rem;
}

.pez-gallery-grid--masonry .pez-gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
}

.pez-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--pez-radius-lg);
  cursor: pointer;
  background: var(--pez-dark-2);
}

.pez-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--pez-transition-slow);
  display: block;
}

.pez-gallery-item:hover img { transform: scale(1.06); }

.pez-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,24,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--pez-transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--pez-space-md);
}

.pez-gallery-item:hover .pez-gallery-item__overlay { opacity: 1; }

.pez-gallery-item__info h3 {
  color: var(--pez-white);
  font-size: var(--pez-text-lg);
  margin-bottom: 0.25rem;
}

.pez-gallery-item__info p {
  color: rgba(255,255,255,0.7);
  font-size: var(--pez-text-sm);
  margin: 0;
}

/* =============================================
   PRICING CARDS
   ============================================= */

.pez-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--pez-space-md);
  align-items: start;
}

.pez-pricing-card {
  background: var(--pez-white);
  border-radius: var(--pez-radius-xl);
  padding: var(--pez-space-xl) var(--pez-space-lg);
  box-shadow: var(--pez-shadow-md);
  position: relative;
  transition: transform var(--pez-transition-base), box-shadow var(--pez-transition-base);
  border: 2px solid transparent;
}

.pez-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pez-shadow-xl);
}

.pez-pricing-card--featured {
  border-color: var(--pez-primary);
  background: linear-gradient(145deg, #fff 0%, #fff5f7 100%);
  transform: scale(1.04);
}

.pez-pricing-card--featured:hover { transform: scale(1.04) translateY(-8px); }

.pez-pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pez-primary), var(--pez-secondary));
  color: var(--pez-white);
  padding: 0.3em 1.2em;
  border-radius: var(--pez-radius-full);
  font-family: var(--pez-font-label);
  font-size: var(--pez-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.pez-pricing-card__name {
  font-family: var(--pez-font-label);
  font-size: var(--pez-text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pez-text-muted);
  margin-bottom: var(--pez-space-sm);
}

.pez-pricing-card__price {
  font-family: var(--pez-font-heading);
  font-size: var(--pez-text-4xl);
  font-weight: 700;
  color: var(--pez-text);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pez-pricing-card__price sup {
  font-size: 0.4em;
  vertical-align: super;
  font-weight: 400;
}

.pez-pricing-card__period {
  font-size: var(--pez-text-sm);
  color: var(--pez-text-muted);
  margin-bottom: var(--pez-space-lg);
}

.pez-pricing-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--pez-space-lg);
}

.pez-pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--pez-border);
  font-size: var(--pez-text-sm);
  color: var(--pez-text);
}

.pez-pricing-card__features li:last-child { border-bottom: none; }

.pez-pricing-card__features li::before {
  content: '✓';
  font-weight: 700;
  color: var(--pez-primary);
  flex-shrink: 0;
  width: 1.2em;
  height: 1.2em;
  background: rgba(232,49,91,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7em;
}

/* =============================================
   TESTIMONIALS
   ============================================= */

.pez-testimonial {
  background: var(--pez-light);
  border-radius: var(--pez-radius-xl);
  padding: var(--pez-space-xl) var(--pez-space-lg);
  position: relative;
}

.pez-testimonial::before {
  content: '"';
  font-family: var(--pez-font-heading);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--pez-primary);
  opacity: 0.2;
  position: absolute;
  top: var(--pez-space-md);
  left: var(--pez-space-lg);
}

.pez-testimonial__text {
  font-family: var(--pez-font-heading);
  font-size: var(--pez-text-xl);
  font-style: italic;
  line-height: 1.6;
  color: var(--pez-text);
  margin-bottom: var(--pez-space-md);
  position: relative;
  z-index: 1;
}

.pez-testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--pez-space-sm);
}

.pez-testimonial__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--pez-primary);
}

.pez-testimonial__name {
  font-family: var(--pez-font-label);
  font-weight: 700;
  font-size: var(--pez-text-sm);
  color: var(--pez-text);
}

.pez-testimonial__role {
  font-size: var(--pez-text-xs);
  color: var(--pez-text-muted);
}

/* Star rating */
.pez-stars {
  display: flex;
  gap: 2px;
  color: var(--pez-accent);
  font-size: 0.9rem;
  margin-bottom: var(--pez-space-sm);
}

/* =============================================
   PROCESS / STEPS
   ============================================= */

.pez-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--pez-space-lg);
  position: relative;
}

.pez-step {
  text-align: center;
  padding: var(--pez-space-lg);
}

.pez-step__number {
  font-family: var(--pez-font-heading);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--pez-primary), var(--pez-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--pez-space-sm);
  display: block;
}

.pez-step__title {
  font-family: var(--pez-font-heading);
  font-size: var(--pez-text-xl);
  margin-bottom: var(--pez-space-xs);
}

.pez-step__desc {
  font-size: var(--pez-text-sm);
  color: var(--pez-text-muted);
  line-height: 1.65;
}

/* =============================================
   WOOCOMMERCE OVERRIDES
   ============================================= */

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #payment #place_order {
  background: linear-gradient(135deg, var(--pez-primary), var(--pez-secondary)) !important;
  color: var(--pez-white) !important;
  border: none !important;
  border-radius: var(--pez-radius-full) !important;
  font-family: var(--pez-font-label) !important;
  font-weight: 600 !important;
  font-size: var(--pez-text-sm) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  padding: 0.85em 2em !important;
  transition: all var(--pez-transition-base) !important;
  box-shadow: 0 4px 20px rgba(232,49,91,0.35) !important;
  cursor: pointer !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #payment #place_order:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(232,49,91,0.45) !important;
  background: linear-gradient(135deg, var(--pez-primary-dark), var(--pez-secondary-dark)) !important;
}

.woocommerce .star-rating span::before,
.woocommerce-page .star-rating span::before { color: var(--pez-accent); }

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span { border-color: var(--pez-border); }

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--pez-primary);
  color: var(--pez-white);
  border-color: var(--pez-primary);
}

.woocommerce .woocommerce-message,
.woocommerce-page .woocommerce-message {
  border-top-color: var(--pez-primary);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--pez-primary);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom-color: var(--pez-white);
}

/* Product Cards */
.woocommerce ul.products li.product .price { color: var(--pez-primary); }
.woocommerce ul.products li.product a img {
  border-radius: var(--pez-radius-lg);
  transition: transform var(--pez-transition-base);
}
.woocommerce ul.products li.product:hover a img { transform: scale(1.03); }

/* =============================================
   ELEMENTOR GLOBAL OVERRIDES
   ============================================= */

.elementor-section.elementor-section-full_width .elementor-container { max-width: 100%; }

.e-con-inner { --container-max-width: var(--pez-container-xl); }

/* Ensure Elementor elements respect our type scale */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--pez-font-heading);
  letter-spacing: -0.02em;
}

.elementor-widget-text-editor { font-family: var(--pez-font-body); }

/* =============================================
   PAGE CANVAS (Elementor full-width) 
   ============================================= */

.pez-canvas-page .pez-header,
.pez-canvas-page .pez-footer {
  display: none;
}

/* =============================================
   BLOG STYLES
   ============================================= */

.pez-post-meta {
  display: flex;
  align-items: center;
  gap: var(--pez-space-sm);
  font-size: var(--pez-text-sm);
  color: var(--pez-text-muted);
  margin-bottom: var(--pez-space-md);
  flex-wrap: wrap;
}

.pez-post-meta span { display: flex; align-items: center; gap: 0.35rem; }

.pez-post-content h2,
.pez-post-content h3,
.pez-post-content h4 {
  margin-top: var(--pez-space-lg);
  margin-bottom: var(--pez-space-sm);
}

.pez-post-content p { margin-bottom: 1.5em; }

.pez-post-thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--pez-radius-xl);
  margin-bottom: var(--pez-space-lg);
}

/* =============================================
   NOTIFICATION / ALERT BARS
   ============================================= */

.pez-alert {
  padding: var(--pez-space-sm) var(--pez-space-md);
  border-radius: var(--pez-radius-md);
  font-size: var(--pez-text-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--pez-space-sm);
}

.pez-alert--info { background: rgba(124,58,237,0.08); color: var(--pez-secondary-dark); border-left: 4px solid var(--pez-secondary); }
.pez-alert--success { background: rgba(16,185,129,0.08); color: #065f46; border-left: 4px solid #10b981; }
.pez-alert--warning { background: rgba(245,158,11,0.08); color: #92400e; border-left: 4px solid var(--pez-accent); }
.pez-alert--error { background: rgba(232,49,91,0.08); color: var(--pez-primary-dark); border-left: 4px solid var(--pez-primary); }

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes pez-fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pez-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pez-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes pez-pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(232,49,91,0.3); }
  50% { box-shadow: 0 0 40px rgba(232,49,91,0.6); }
}

.pez-animate-fadeInUp { animation: pez-fadeInUp 0.6s ease forwards; }
.pez-animate-float { animation: pez-float 3s ease-in-out infinite; }

/* Stagger children */
.pez-stagger > *:nth-child(1) { animation-delay: 0ms; }
.pez-stagger > *:nth-child(2) { animation-delay: 100ms; }
.pez-stagger > *:nth-child(3) { animation-delay: 200ms; }
.pez-stagger > *:nth-child(4) { animation-delay: 300ms; }

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

@media (max-width: 1024px) {
  .pez-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --pez-header-height: 80px;
  }

  .pez-nav { display: none; }
  .pez-nav-toggle { display: flex; }

  .pez-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--pez-space-lg);
  }

  .pez-hero__actions {
    flex-direction: column;
  }

  .pez-gallery-grid--masonry {
    columns: 2;
  }

  .pez-pricing-card--featured {
    transform: none;
  }

  .pez-header__inner { padding: 0 var(--pez-space-md); }
}

@media (max-width: 480px) {
  .pez-gallery-grid--masonry { columns: 1; }
  .pez-section { padding-top: var(--pez-space-xl); padding-bottom: var(--pez-space-xl); }
}

/* Header Book Now button — extra padding for comfort */
.pez-header .pez-btn--primary {
  padding: 0.75em 2em;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

/* =============================================
   ADMIN BAR OFFSET
   When WP admin bar is visible it pushes the
   fixed header down, making content appear
   off-centre. Compensate with padding-top.
   ============================================= */

.admin-bar .pez-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .pez-header {
    top: 46px;
  }
}

@media screen and (max-width: 600px) {
  .admin-bar .pez-header {
    top: 0;
  }
}

/* =============================================
   NAV MENU UL FIXES
   ============================================= */

.pez-nav ul {
  display: flex;
  align-items: center;
  gap: var(--pez-space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}

.pez-nav ul li {
  margin: 0;
  padding: 0;
  position: relative;
}

.pez-nav ul li a {
  font-family: var(--pez-font-label);
  font-size: var(--pez-text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.80);
  transition: color var(--pez-transition-fast);
  padding: 0.25rem 0;
  position: relative;
  white-space: nowrap;
}

.pez-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pez-primary);
  transition: width var(--pez-transition-base);
}

.pez-nav ul li a:hover,
.pez-nav ul li.current-menu-item > a {
  color: var(--pez-white);
}

.pez-nav ul li a:hover::after,
.pez-nav ul li.current-menu-item > a::after {
  width: 100%;
}

.pez-mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pez-mobile-nav ul li a {
  display: block;
  padding: var(--pez-space-sm) 0;
  font-family: var(--pez-font-label);
  font-size: var(--pez-text-base);
  color: rgba(255,255,255,0.80);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pez-mobile-nav ul li:last-child a { border-bottom: none; }
.pez-mobile-nav ul li a:hover { color: var(--pez-white); }

/* =============================================
   PRINT STYLES
   ============================================= */

@media print {
  .pez-header, .pez-footer, .pez-nav-toggle { display: none !important; }
  body { color: #000; }
  a { color: #000; text-decoration: underline; }
}
