/*
Theme Name:   Dr. Georgette Savvides
Theme URI:    https://georgette.com
Description:  Child theme for Dr. Georgette Savvides - Consultant Clinical Psychologist
Author:       Custom
Version:      1.1.0
Template:     storefront
Tags:         one-page, woocommerce, psychology
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --ivory:      #FAF8F5;
  --blush:      #E8D5C4;
  --navy:       #354135;
  --gold:       #C9A96E;
  --sage:       #9CAF88;
  --text-dark:  #2C2C2C;
  --text-mid:   #5A5A5A;
  --text-light: #8A8A8A;
  --white:      #FFFFFF;
  --border:     #E8E0D8;

  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans:  'Inter', 'DM Sans', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --shadow-sm:  0 2px 12px rgba(30,42,58,0.06);
  --shadow-md:  0 8px 32px rgba(30,42,58,0.10);
  --shadow-lg:  0 16px 48px rgba(30,42,58,0.14);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--ivory);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 1rem;
}

p { margin: 0 0 1rem; color: var(--text-mid); }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }

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

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================
   HIDE DEFAULT STOREFRONT HEADER/FOOTER
   ============================================ */
.site-header,
.storefront-primary-navigation,
.site-footer,
.woocommerce-breadcrumb { display: none !important; }

/* ============================================
   STICKY NAV
   ============================================ */
#dr-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow var(--transition);
}

#dr-nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.nav-brand span { color: var(--gold); font-style: italic; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold) !important; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   PAGE WRAPPER
   ============================================ */
#dr-page { padding-top: 68px; }

/* ============================================
   SECTION BASE
   ============================================ */
.dr-section {
  padding: 100px 2rem;
}

.dr-section--alt { background: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
#dr-hero {
  min-height: calc(100vh - 68px);
  background: linear-gradient(135deg, var(--ivory) 0%, #F0E8E0 50%, #EAE0D5 100%);
  display: flex;
  align-items: center;
  padding: 60px 2rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.hero-image-badge img {
  width: 28px; height: 28px;
  border-radius: 4px;
}

.hero-content { display: flex; flex-direction: column; gap: 1.25rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin: 0;
}
.hero-title em { color: var(--gold); font-style: italic; }

.hero-degree {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  margin: 0;
}

/* ★ CREDENTIAL HIGHLIGHT — Most important element */
.hero-credential {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
}

.hero-credential-main {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin: 0 0 4px;
}

.hero-credential-name {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.hero-tagline {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.hero-tagline span {
  display: inline-block;
  width: 1px; height: 12px;
  background: var(--border);
  margin: 0 10px;
  vertical-align: middle;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #B8935A;
  border-color: #B8935A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.4);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#dr-about .about-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.about-sticky {
  position: sticky;
  top: 88px;
}

.about-photo {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-text p { font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 2rem;
}

.cred-item {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cred-icon { font-size: 1.2rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }

.cred-info { display: flex; flex-direction: column; gap: 2px; }
.cred-title { font-size: 0.8rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.cred-sub { font-size: 0.72rem; color: var(--text-light); line-height: 1.3; }

/* ============================================
   SESSIONS SECTION
   ============================================ */
#dr-sessions {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 100%);
}

.sessions-tabs {
  display: flex;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
}

.sessions-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  background: none;
  white-space: nowrap;
}

.sessions-tab.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.sessions-tab:hover:not(.active) { color: var(--navy); }

.sessions-panel { display: none; }
.sessions-panel.active { display: block; }

.sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 2rem;
}

.session-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.session-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}

.session-card:hover,
.session-card.selected {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.session-card:hover::before,
.session-card.selected::before { transform: scaleY(1); }

.session-card.selected { background: #FEFBF6; }

.session-type {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.session-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.session-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.session-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.session-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-light); }

.session-select-badge {
  position: absolute;
  top: 16px; right: 16px;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 0.7rem;
  color: transparent;
}

.session-card.selected .session-select-badge {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.sessions-notice {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 0 0 2rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sessions-cta-wrap {
  text-align: center;
}

/* ============================================
   BOOKING POPUP
   ============================================ */
#booking-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,42,58,0.55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

#booking-overlay.open { display: flex; }

#booking-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: popupIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--ivory);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-mid);
  transition: all var(--transition);
}
.popup-close:hover { background: var(--blush); color: var(--navy); }

.popup-session-summary {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-session-name { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.popup-session-price { font-weight: 700; color: var(--gold); font-size: 1.1rem; }

.popup-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.popup-subtitle { font-size: 0.875rem; color: var(--text-light); margin-bottom: 28px; }

/* Form */
.dr-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.form-label .required { color: var(--gold); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--ivory);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
  background: var(--white);
}

.form-textarea { resize: vertical; min-height: 90px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5A5A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-submit {
  margin-top: 8px;
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 4px;
}

/* ============================================
   BOOKS SECTION
   ============================================ */
#dr-books {
  background: var(--navy);
}

#dr-books .section-label { color: rgba(201,169,110,0.8); }
#dr-books .section-title { color: var(--white); }
#dr-books .section-subtitle { color: rgba(255,255,255,0.55); }

.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.book-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.book-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,169,110,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.book-cover {
  width: 80px;
  height: 110px;
  background: linear-gradient(135deg, var(--gold) 0%, #B8935A 100%);
  border-radius: 6px 12px 12px 6px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 6px 6px 20px rgba(0,0,0,0.3);
  position: relative;
  flex-shrink: 0;
}

.book-cover::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 4px;
  background: rgba(0,0,0,0.2);
  border-radius: 3px 0 0 3px;
}

.book-cover-text {
  font-family: var(--font-serif);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  padding: 0 8px;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.book-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 12px;
  width: fit-content;
}

.book-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}

.book-author { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }

.book-desc { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; flex-grow: 1; }

.book-price { font-size: 1.3rem; font-weight: 700; color: var(--gold); margin-bottom: 16px; }

.book-btn {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 13px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
  text-align: center;
}

.book-btn:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#dr-contact {
  background: var(--ivory);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all var(--transition);
  color: var(--text-dark);
}

.contact-info-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-icon {
  width: 40px; height: 40px;
  background: var(--ivory);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-label { font-size: 0.72rem; color: var(--text-light); font-weight: 500; }
.contact-value { font-size: 0.9rem; color: var(--navy); font-weight: 600; }

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
#dr-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 32px 2rem;
  font-size: 0.82rem;
}

#dr-footer strong { color: var(--white); }
#dr-footer a { color: var(--gold); }

/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */
.woocommerce-page #dr-page .woocommerce,
body.woocommerce-checkout #dr-page,
body.woocommerce-cart #dr-page {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 2rem;
}

/* Checkout heading */
.woocommerce-checkout h1,
.woocommerce-cart h1 {
  font-family: var(--font-serif);
  color: var(--navy);
}

/* Checkout fields */
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  font-family: var(--font-sans) !important;
  background: var(--ivory) !important;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus {
  border-color: var(--gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15) !important;
}

/* Checkout button */
#place_order,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
  font-family: var(--font-sans) !important;
  border: none !important;
  transition: all var(--transition) !important;
}

#place_order:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--gold) !important;
  transform: translateY(-2px) !important;
}

/* Order review */
.woocommerce-checkout-review-order-table {
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  border: 1px solid var(--border) !important;
}

/* ============================================
   BOOKING DETAILS in ORDER (hidden field display)
   ============================================ */
.dr-booking-meta {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 0.85rem;
  color: var(--text-mid);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { max-width: 380px; margin: 0 auto; }
  .hero-title { font-size: 2.5rem; }

  #dr-about .about-inner { grid-template-columns: 1fr; }
  .about-sticky { position: static; }

  .books-grid { grid-template-columns: 1fr; max-width: 420px; }

  .contact-inner { grid-template-columns: 1fr; }

  .credentials-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem 1.5rem;
    gap: 1rem;
  }
  .nav-hamburger { display: flex; }

  .dr-section { padding: 70px 1.25rem; }
  #booking-popup { padding: 28px 22px; }

  .sessions-tabs { gap: 0; }
  .sessions-tab { padding: 8px 14px; font-size: 0.78rem; }
}

/* ============================================
   FULL WIDTH — Remove Storefront container limits
   ============================================ */
.page-template-templates-one-page .col-full,
.page-template-templates-one-page #primary,
.page-template-templates-one-page .site-content,
.page-template-templates-one-page #content,
.page-template-templates-one-page .entry-content,
.page-template-templates-one-page .hfeed {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

.page-template-templates-one-page #secondary { display: none !important; }

.page-template-templates-one-page .entry-header { display: none !important; }

/* ============================================
   SESSION CARDS — CENTER always
   ============================================ */
.sessions-grid {
  justify-content: center;
}