/*
Theme Name: Shar's Spa
Theme URI: https://williamtucker.ca
Author: William Tucker Solutions
Author URI: https://williamtucker.ca
Description: Custom theme for Shar's Body Scan and Foot Spa
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: shars-spa
*/

/* =========================================================
   COLOR THEMES
   ========================================================= */

:root {
    --primary:        #2aa7a7;
    --primary-dark:   #1a8a8a;
    --primary-light:  #d4f0ef;
    --accent:         #d4f0ef;
    --bg:             #f8f9fa;
    --bg-alt:         #ffffff;
    --text:           #2d3436;
    --text-light:     #636e72;
    --highlight:      #2aa7a7;
}

body[data-theme="aqua"] {
    --primary:        #2aa7a7;
    --primary-dark:   #1a8a8a;
    --primary-light:  #d4f0ef;
    --accent:         #d4f0ef;
    --bg:             #f8f9fa;
    --bg-alt:         #ffffff;
    --highlight:      #2aa7a7;
}

body[data-theme="natural"] {
    --primary:        #5a7a6e;
    --primary-dark:   #3d5a4e;
    --primary-light:  #d4e8df;
    --accent:         #d4c5a9;
    --bg:             #faf8f5;
    --bg-alt:         #ffffff;
    --highlight:      #5a7a6e;
}

body[data-theme="rose"] {
    --primary:        #b5838d;
    --primary-dark:   #8e6570;
    --primary-light:  #f2dede;
    --accent:         #e8c8c8;
    --bg:             #fdf6f6;
    --bg-alt:         #ffffff;
    --highlight:      #b5838d;
}

body[data-theme="lavender"] {
    --primary:        #7c6fa0;
    --primary-dark:   #5e5480;
    --primary-light:  #e3ddf0;
    --accent:         #c8b8db;
    --bg:             #f8f6fc;
    --bg-alt:         #ffffff;
    --highlight:      #7c6fa0;
}

body[data-theme="ocean"] {
    --primary:        #3d7ea6;
    --primary-dark:   #2b5f80;
    --primary-light:  #d1e6f0;
    --accent:         #a8d0e0;
    --bg:             #f5f9fb;
    --bg-alt:         #ffffff;
    --highlight:      #3d7ea6;
}

/* =========================================================
   RESET & BASE
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.125rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul,
ol {
    list-style: none;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 0.5em;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.125rem; }
h3 { font-size: 1.625rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.25rem;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

/* =========================================================
   LAYOUT
   ========================================================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.section {
    padding: 5rem 0;
    background-color: var(--bg);
}

.section-alt {
    padding: 5rem 0;
    background-color: var(--bg-alt);
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-alt);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.5rem;
}

.site-branding {
    flex-shrink: 0;
}

.site-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    line-height: 1.1;
}

.site-title a {
    color: inherit;
}

.site-tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
}

.site-nav {
    flex: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: block;
    padding: 0.5rem 0.875rem;
    color: var(--text);
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
    color: var(--primary);
    background-color: var(--primary-light);
}

/* Dropdown */
.nav-menu li {
    position: relative;
}

.nav-menu li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-alt);
    border: 1px solid var(--primary-light);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 0.5rem 0;
    z-index: 200;
}

.nav-menu li:hover ul,
.nav-menu li:focus-within ul {
    display: block;
}

.nav-menu li ul li a {
    padding: 0.5rem 1.25rem;
    border-radius: 0;
    font-size: 0.95rem;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Header phone */
.header-phone {
    flex-shrink: 0;
    font-size: 0.95rem;
    text-align: right;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    text-decoration: none;
}

.phone-btn svg {
    flex-shrink: 0;
}

.phone-btn:hover {
    color: var(--primary-dark);
}

/* =========================================================
   HERO SECTION
   ========================================================= */

.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    color: #ffffff;
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    color: #ffffff;
    font-size: 3.25rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-block;
    padding: 0.75rem 1.875rem;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    line-height: 1.3;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: #ffffff;
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* =========================================================
   CARDS
   ========================================================= */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background-color: var(--bg-alt);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
    color: var(--primary-dark);
}

.card-text {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.card-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

/* =========================================================
   SERVICE PAGES
   ========================================================= */

.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
    padding: 4rem 0;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-content img {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.service-intro {
    font-size: 1.1875rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.feature-list {
    list-style: none;
    margin: 1.25rem 0 1.75rem;
    padding: 0;
}

.feature-list li {
    padding: 0.375rem 0 0.375rem 1.875rem;
    position: relative;
    color: var(--text);
    font-size: 1.0625rem;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.625rem;
    width: 1.125rem;
    height: 1.125rem;
    background-color: var(--primary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M2 6l3 3 5-5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
}

.pricing-box {
    background-color: var(--primary-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
}

.pricing-box h3 {
    color: var(--primary-dark);
    margin-bottom: 0.875rem;
    font-size: 1.25rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    gap: 1rem;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-label {
    color: var(--text);
    font-size: 1rem;
}

.pricing-amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.info-note {
    background-color: var(--bg);
    border: 1px solid var(--primary-light);
    border-radius: 6px;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.info-note strong {
    color: var(--text);
}

/* =========================================================
   PRODUCTS / GALLERY
   ========================================================= */

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.75rem;
    margin-top: 2rem;
}

.product-category {
    background-color: var(--bg-alt);
    border: 1px solid var(--primary-light);
    border-radius: 8px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-category:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.product-category-icon {
    font-size: 2.5rem;
    margin-bottom: 0.875rem;
}

.product-category h3 {
    font-size: 1.125rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.photo-gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.photo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.photo-gallery-item:hover img {
    transform: scale(1.05);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: var(--bg-alt);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    position: relative;
}

.testimonial-stars {
    color: #f4c430;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 0.875rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    font-size: 1.0625rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    position: relative;
}

.testimonial-text::before {
    content: '\201C';
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    line-height: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.9375rem;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-detail {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-top: 0.125rem;
}

.contact-detail-text {
    font-size: 1.0625rem;
    color: var(--text);
    line-height: 1.5;
}

.contact-detail-text strong {
    display: block;
    color: var(--text);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.why-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.why-list li {
    padding: 1.125rem 1.25rem 1.125rem 3rem;
    background-color: var(--bg-alt);
    border-radius: 6px;
    position: relative;
    font-size: 1.0625rem;
    color: var(--text);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.why-list li::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--primary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
}

/* =========================================================
   PHILOSOPHY QUOTE
   ========================================================= */

.philosophy-quote {
    background-color: var(--primary);
    padding: 4rem 0;
    text-align: center;
}

.philosophy-quote blockquote {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.philosophy-quote blockquote p {
    font-size: 2.4rem;
    font-style: italic;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.02em;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.butterfly {
    width: 70px;
    height: 56px;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.butterfly-left {
    transform: rotate(-15deg);
}

.butterfly-right {
    transform: rotate(10deg);
}

/* =========================================================
   CTA SECTION
   ========================================================= */

.cta-section {
    background-color: var(--primary);
    padding: 5rem 0;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1875rem;
    margin-bottom: 2rem;
    font-style: italic;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background-color: #1a1f20;
    color: rgba(255, 255, 255, 0.75);
    padding: 3.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.footer-col p,
.footer-col address {
    font-size: 0.9375rem;
    line-height: 1.7;
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.disclaimer {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 620px;
    line-height: 1.5;
}

/* =========================================================
   BLOG
   ========================================================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background-color: var(--bg-alt);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.blog-card-thumbnail {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-thumbnail img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.625rem;
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
    color: var(--text);
}

.blog-card-title a {
    color: inherit;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    color: var(--text-light);
    font-size: 0.9875rem;
    flex: 1;
    margin-bottom: 1.25rem;
}

/* =========================================================
   THEME SWITCHER
   ========================================================= */

.theme-switcher {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.theme-switcher-toggle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    font-size: 1.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.theme-switcher-toggle:hover {
    background-color: var(--primary-dark);
    transform: scale(1.08);
}

.theme-options {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background-color: var(--bg-alt);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    min-width: 160px;
}

.theme-options.is-open {
    display: flex;
}

.theme-option-btn {
    background: none;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 0.375rem 0.75rem;
    cursor: pointer;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 0.9375rem;
    color: var(--text);
    text-align: left;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.theme-option-btn:hover,
.theme-option-btn.active {
    border-color: var(--primary);
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

/* =========================================================
   RESPONSIVE — max-width: 768px
   ========================================================= */

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.625rem; }
    h3 { font-size: 1.375rem; }

    .section,
    .section-alt {
        padding: 3rem 0;
    }

    /* Header */
    .header-inner {
        flex-wrap: wrap;
        padding: 0.875rem 1rem;
    }

    .header-phone {
        order: 3;
        width: 100%;
        padding: 0.5rem 0 0;
        border-top: 1px solid var(--primary-light);
    }

    .phone-btn {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0.6rem 1rem;
        background: var(--primary);
        color: #fff;
        border-radius: 2rem;
        font-size: 0.95rem;
        font-weight: 700;
    }

    .phone-btn:hover {
        background: var(--primary-dark);
        color: #fff;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        order: 4;
        width: 100%;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.35s ease;
    }

    .site-nav.is-open {
        max-height: 600px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 0 1rem;
        gap: 0.125rem;
    }

    .nav-menu li a {
        padding: 0.625rem 0.75rem;
    }

    .nav-menu li ul {
        position: static;
        display: block;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--primary-light);
        margin-left: 1rem;
        padding: 0.25rem 0;
        border-radius: 0;
    }

    /* Hero */
    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    /* Service content */
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 0;
    }

    .service-content.reverse {
        direction: ltr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Cards */
    .card-grid {
        grid-template-columns: 1fr;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Philosophy quote */
    .philosophy-quote blockquote {
        gap: 0.75rem;
    }

    .philosophy-quote blockquote p {
        font-size: 1.3rem;
    }

    .butterfly {
        width: 28px;
        height: 22px;
    }

    /* CTA */
    .cta-section h2 {
        font-size: 1.75rem;
    }

    /* Buttons */
    .btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }

    /* Theme switcher */
    .theme-switcher {
        bottom: 1rem;
        right: 1rem;
    }

    /* Pricing */
    .pricing-row {
        flex-direction: column;
        gap: 0.125rem;
    }

    /* Why list */
    .why-list {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   WELCOME LAYOUT (storefront photo + text)
   ========================================================= */

.welcome-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

.welcome-photo {
    flex: 1.4;
    min-width: 0;
}

.welcome-photo img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.welcome-text {
    flex: 1;
}

@media (max-width: 768px) {
    .welcome-layout {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================================
   MEET THE OWNER
   ========================================================= */

.meet-owner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.meet-owner-photo {
    flex: 0 0 280px;
}

.meet-owner-photo img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    aspect-ratio: 1;
    object-fit: cover;
}

.meet-owner-text {
    flex: 1;
}

@media (max-width: 768px) {
    .meet-owner {
        flex-direction: column;
        text-align: center;
    }

    .meet-owner-photo {
        flex: 0 0 200px;
    }
}

/* =========================================================
   GIFT CERTIFICATES
   ========================================================= */

.gift-cert-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    text-align: left;
}

.gift-cert-photo {
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gift-cert-text {
    max-width: 400px;
}

@media (max-width: 768px) {
    .gift-cert-layout {
        flex-direction: column;
        text-align: center;
    }

    .gift-cert-photo {
        max-width: 250px;
    }
}

/* =========================================================
   FOOT DETOX PHOTOS & COLOR CHART
   ========================================================= */

.detox-photo-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.detox-photo {
    flex: 0 1 220px;
}

.detox-photo img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.color-chart-container {
    text-align: center;
    margin: 2rem 0;
}

.color-chart-img {
    max-width: 350px;
    max-height: 550px;
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .detox-photo-row {
        flex-direction: column;
        align-items: center;
    }

    .detox-photo {
        flex: 0 1 200px;
    }

    .detox-photo img {
        height: 260px;
    }
}

/* =========================================================
   FEATURED PRODUCTS
   ========================================================= */

.featured-products {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-product-card {
    flex: 1;
    background: var(--bg-alt);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding-bottom: 1.5rem;
}

.featured-product-card h3 {
    color: var(--primary);
    margin: 1.5rem 1rem 0.5rem;
    font-size: 1.1rem;
}

.featured-product-card p {
    margin: 0 1rem 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.featured-product-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

@media (max-width: 768px) {
    .featured-products {
        flex-direction: column;
    }
}

/* =========================================================
   CONTACT PAGE STOREFRONT
   ========================================================= */

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.storefront-photo img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   EXTRA CONTENT (WordPress editor content on template pages)
   ========================================================= */

.extra-content {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-light);
}

.extra-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.extra-content p {
    margin-bottom: 1rem;
}

/* =========================================================
   BODY SCAN PAGE
   ========================================================= */

.scan-intro {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.scan-intro-photo {
    flex: 0 0 320px;
    min-width: 0;
}

.scan-intro-photo img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.scan-intro-text {
    flex: 1;
}

.scan-steps {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.scan-step {
    flex: 1;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-alt);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.scan-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.scan-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.scan-step p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.5;
}

.scan-equipment-row {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.scan-equipment-photo {
    flex: 1;
    text-align: center;
}

.scan-equipment-photo img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.photo-caption {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.scan-report-overview {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.scan-benefits-image {
    flex: 0 0 320px;
}

.scan-benefits-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.scan-highlights {
    flex: 1;
}

@media (max-width: 768px) {
    .scan-intro {
        flex-direction: column;
        text-align: center;
    }

    .scan-intro-photo {
        flex: auto;
        max-width: 280px;
    }

    .scan-intro-photo img {
        height: 300px;
    }

    .scan-steps {
        flex-direction: column;
    }

    .scan-equipment-row {
        flex-direction: column;
    }

    .scan-report-overview {
        flex-direction: column;
    }

    .scan-benefits-image {
        flex: auto;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* =========================================================
   CERTIFICATION BADGE (Meet Shar section)
   ========================================================= */

.certification-badge {
    margin: 1.5rem 0;
    max-width: 280px;
}

.certification-badge img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .certification-badge {
        margin: 1.5rem auto;
    }
}

/* =========================================================
   SALE PRICING
   ========================================================= */

.pricing-sale {
    text-align: center;
    margin-bottom: 0.5rem;
}

.pricing-original {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.pricing-sale-amount {
    color: #c0392b;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.pricing-sale-label {
    display: inline-block;
    background: #c0392b;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =========================================================
   FOOTER EXTRAS
   ========================================================= */

.footer-draw-cta {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--primary-light);
    line-height: 1.4;
}

/* =========================================================
   MELALEUCA PAGE
   ========================================================= */

.melaleuca-intro {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.melaleuca-intro-photo {
    flex: 0 0 280px;
    min-width: 0;
}

.melaleuca-intro-photo img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.melaleuca-intro-text {
    flex: 1;
}

.melaleuca-intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.melaleuca-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.melaleuca-category {
    background: var(--bg-alt);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.melaleuca-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.melaleuca-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.melaleuca-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.melaleuca-category p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.5;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background: var(--primary-light);
    border-radius: 10px;
    padding: 1.5rem;
}

.benefit-item strong {
    display: block;
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
}

.benefit-item p {
    font-size: 0.92rem;
    color: var(--text);
    margin: 0;
    line-height: 1.5;
}

.melaleuca-photo-bottom {
    margin-top: 2.5rem;
    text-align: center;
}

.melaleuca-photo-bottom img {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .melaleuca-intro {
        flex-direction: column;
        text-align: center;
    }

    .melaleuca-intro-photo {
        flex: auto;
        max-width: 280px;
    }

    .melaleuca-intro-photo img {
        height: 240px;
    }

    .melaleuca-categories {
        grid-template-columns: 1fr;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }
}
