/*
Theme Name: ZenLife Japandi
Theme URI: https://zenlifeforever.com
Author: ZenLife Forever
Author URI: https://zenlifeforever.com
Description: A serene Japandi-style WordPress theme for modern furniture and home goods. Features WooCommerce integration, pre-order system with 50% deposit, AI-powered furniture design, and whole-space customization services. Built for peace, calm, and quality living.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zenlife-japandi
Tags: e-commerce, woocommerce, japandi, minimal, furniture, custom-logo, custom-menu, featured-images

ZenLife Japandi WordPress Theme, (C) 2024 ZenLife Forever
*/

/* ===== CSS RESET & BASE ===== */
:root {
    --zen-cream: #F5F0E8;
    --zen-warm-white: #FAF8F5;
    --zen-sand: #E8DFD0;
    --zen-stone: #C4B5A0;
    --zen-wood: #8B7355;
    --zen-wood-dark: #6B5640;
    --zen-charcoal: #2C2C2C;
    --zen-ink: #1A1A1A;
    --zen-sage: #8FA68A;
    --zen-sage-light: #B5C9B0;
    --zen-moss: #6B8F65;
    --zen-clay: #C9A882;
    --zen-terracotta: #B8836A;
    --zen-mist: #E8EDE6;
    --zen-font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --zen-font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --zen-font-accent: 'Noto Sans JP', sans-serif;
    --zen-radius: 2px;
    --zen-shadow: 0 2px 20px rgba(0,0,0,0.06);
    --zen-shadow-hover: 0 8px 40px rgba(0,0,0,0.1);
    --zen-transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--zen-font-body);
    background-color: var(--zen-warm-white);
    color: var(--zen-charcoal);
    line-height: 1.8;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--zen-font-heading);
    font-weight: 300;
    line-height: 1.3;
    color: var(--zen-ink);
    letter-spacing: 0.02em;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

a {
    color: var(--zen-wood);
    text-decoration: none;
    transition: var(--zen-transition);
}

a:hover {
    color: var(--zen-wood-dark);
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(196, 181, 160, 0.2);
    transition: var(--zen-transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 30px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.site-logo {
    font-family: var(--zen-font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--zen-ink);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.site-logo span {
    font-weight: 600;
    color: var(--zen-wood);
}

.site-logo .jp-text {
    font-family: var(--zen-font-accent);
    font-size: 0.7rem;
    display: block;
    letter-spacing: 0.3em;
    color: var(--zen-stone);
    margin-top: -2px;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.main-navigation a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--zen-charcoal);
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--zen-wood);
    transition: var(--zen-transition);
    transform: translateX(-50%);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-actions a {
    color: var(--zen-charcoal);
    font-size: 1.1rem;
}

.cart-count {
    background: var(--zen-wood);
    color: white;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -8px;
    left: -5px;
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--zen-charcoal);
    margin: 6px 0;
    transition: var(--zen-transition);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--zen-cream);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-text {
    z-index: 2;
}

.hero-tagline {
    font-family: var(--zen-font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--zen-sage);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 200;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--zen-ink);
}

.hero-title em {
    font-style: italic;
    color: var(--zen-wood);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--zen-charcoal);
    opacity: 0.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.9;
}

.hero-image {
    position: relative;
    height: 600px;
    border-radius: var(--zen-radius);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245,240,232,0.3), transparent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--zen-font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--zen-transition);
    border-radius: var(--zen-radius);
}

.btn-primary {
    background: var(--zen-charcoal);
    color: white;
}

.btn-primary:hover {
    background: var(--zen-ink);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--zen-shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--zen-charcoal);
    border: 1px solid var(--zen-charcoal);
}

.btn-secondary:hover {
    background: var(--zen-charcoal);
    color: white;
}

.btn-wood {
    background: var(--zen-wood);
    color: white;
}

.btn-wood:hover {
    background: var(--zen-wood-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-preorder {
    background: var(--zen-sage);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-preorder:hover {
    background: var(--zen-moss);
    color: white;
    transform: translateY(-2px);
}

.btn-preorder .preorder-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    font-size: 0.65rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy-section {
    padding: 8rem 0;
    background: var(--zen-warm-white);
    text-align: center;
}

.philosophy-content {
    max-width: 700px;
    margin: 0 auto;
}

.section-japanese {
    font-family: var(--zen-font-accent);
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--zen-stone);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.philosophy-text {
    font-size: 1.15rem;
    color: var(--zen-charcoal);
    opacity: 0.75;
    line-height: 2;
}

.philosophy-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--zen-wood);
}

.value-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--zen-charcoal);
    opacity: 0.7;
    line-height: 1.7;
}

/* ===== PRODUCT SECTIONS ===== */
.products-section {
    padding: 6rem 0;
}

.products-section.alt-bg {
    background: var(--zen-cream);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-header .section-title {
    margin-bottom: 0;
}

.view-all-link {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--zen-wood);
    border-bottom: 1px solid var(--zen-wood);
    padding-bottom: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: var(--zen-radius);
    overflow: hidden;
    transition: var(--zen-transition);
    position: relative;
    border: 1px solid rgba(196,181,160,0.15);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--zen-shadow-hover);
}

.product-card-image {
    position: relative;
    height: 380px;
    overflow: hidden;
    background: var(--zen-cream);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--zen-radius);
    z-index: 2;
}

.badge-in-stock {
    background: var(--zen-sage);
    color: white;
}

.badge-preorder {
    background: var(--zen-terracotta);
    color: white;
}

.badge-bestseller {
    background: var(--zen-wood);
    color: white;
}

.badge-ai-designed {
    background: var(--zen-ink);
    color: white;
}

.product-card-info {
    padding: 1.5rem;
}

.product-card-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.product-card-subtitle {
    font-size: 0.8rem;
    color: var(--zen-stone);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--zen-ink);
}

.price-deposit {
    font-size: 0.8rem;
    color: var(--zen-terracotta);
    font-weight: 400;
}

.product-card-actions {
    display: flex;
    gap: 0.75rem;
}

.product-card-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 0.8rem 1rem;
    font-size: 0.7rem;
}

/* ===== PRE-ORDER BANNER ===== */
.preorder-banner {
    background: linear-gradient(135deg, var(--zen-ink) 0%, var(--zen-charcoal) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.preorder-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>') repeat;
    background-size: 200px;
}

.preorder-banner .container {
    position: relative;
    z-index: 2;
}

.preorder-banner h2 {
    color: white;
    margin-bottom: 1rem;
}

.preorder-banner p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.preorder-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.preorder-step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.preorder-step-number {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: var(--zen-font-heading);
    font-size: 1.2rem;
}

.preorder-step h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.preorder-step p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
}

/* ===== CUSTOMIZATION SECTION ===== */
.customization-section {
    padding: 8rem 0;
    background: var(--zen-mist);
}

.customization-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.customization-text .section-japanese {
    text-align: left;
}

.customization-text .section-title {
    text-align: left;
}

.customization-features {
    list-style: none;
    margin-top: 2rem;
}

.customization-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(196,181,160,0.2);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
}

.customization-features li::before {
    content: '\2022';
    color: var(--zen-sage);
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.customization-visual {
    position: relative;
    height: 500px;
    border-radius: var(--zen-radius);
    overflow: hidden;
    background: var(--zen-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.customization-visual .room-preview {
    text-align: center;
    padding: 3rem;
}

.customization-visual .room-preview h3 {
    margin-top: 2rem;
    font-size: 1.3rem;
}

.customization-tabs {
    display: flex;
    gap: 0;
    margin-top: 2rem;
    border: 1px solid var(--zen-sand);
    border-radius: var(--zen-radius);
    overflow: hidden;
}

.customization-tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    background: white;
    border: none;
    transition: var(--zen-transition);
    font-family: var(--zen-font-body);
    font-weight: 500;
}

.customization-tab.active,
.customization-tab:hover {
    background: var(--zen-charcoal);
    color: white;
}

/* ===== AI / NEW IDEAS SECTION ===== */
.new-ideas-section {
    padding: 8rem 0;
    background: var(--zen-warm-white);
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.idea-card {
    background: white;
    border-radius: var(--zen-radius);
    overflow: hidden;
    border: 1px solid rgba(196,181,160,0.15);
    transition: var(--zen-transition);
}

.idea-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--zen-shadow-hover);
}

.idea-card-image {
    height: 250px;
    overflow: hidden;
    background: var(--zen-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.idea-card-image .ai-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(26,26,26,0.8);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--zen-radius);
}

.idea-card-content {
    padding: 1.5rem;
}

.idea-card-category {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--zen-sage);
    margin-bottom: 0.75rem;
}

.idea-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.idea-card p {
    font-size: 0.9rem;
    color: var(--zen-charcoal);
    opacity: 0.7;
    line-height: 1.7;
}

.generate-ideas-btn {
    display: block;
    margin: 3rem auto 0;
    padding: 1.2rem 3rem;
}

/* ===== SHIPPING INFO ===== */
.shipping-section {
    padding: 5rem 0;
    background: var(--zen-cream);
}

.shipping-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 2rem auto 0;
}

.shipping-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--zen-radius);
    text-align: center;
    border: 1px solid rgba(196,181,160,0.15);
}

.shipping-card .shipping-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.shipping-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.shipping-card .shipping-time {
    font-size: 2rem;
    font-weight: 300;
    color: var(--zen-wood);
    font-family: var(--zen-font-heading);
    margin-bottom: 0.5rem;
}

.shipping-card p {
    font-size: 0.85rem;
    color: var(--zen-charcoal);
    opacity: 0.7;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--zen-ink);
    color: rgba(255,255,255,0.7);
    padding: 5rem 0 2rem;
}

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

.footer-brand .site-logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand .site-logo span {
    color: var(--zen-clay);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.6;
}

.footer-column h4 {
    color: white;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: var(--zen-font-body);
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ===== WOOCOMMERCE OVERRIDES ===== */
.woocommerce ul.products li.product {
    background: white;
    border-radius: var(--zen-radius);
    overflow: hidden;
    border: 1px solid rgba(196,181,160,0.15);
    transition: var(--zen-transition);
    margin-bottom: 2rem;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: var(--zen-shadow-hover);
}

.woocommerce ul.products li.product a img {
    margin: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--zen-font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    padding: 1rem 1.5rem 0.25rem;
    color: var(--zen-ink);
}

.woocommerce ul.products li.product .price {
    padding: 0 1.5rem;
    color: var(--zen-wood);
    font-size: 1.1rem;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background: var(--zen-charcoal);
    color: white;
    border-radius: var(--zen-radius);
    font-family: var(--zen-font-body);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border: none;
    transition: var(--zen-transition);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--zen-ink);
    color: white;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: var(--zen-wood);
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
    background: var(--zen-wood-dark);
}

/* Pre-order button style */
.woocommerce .preorder-add-to-cart .btn-preorder {
    width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    padding: 1rem 2rem;
}

.preorder-info-box {
    background: var(--zen-mist);
    border: 1px solid var(--zen-sage-light);
    border-radius: var(--zen-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.preorder-info-box h4 {
    font-size: 0.9rem;
    font-family: var(--zen-font-body);
    font-weight: 600;
    color: var(--zen-moss);
    margin-bottom: 0.5rem;
}

.preorder-info-box p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--zen-charcoal);
}

.preorder-info-box .deposit-amount {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--zen-wood);
}

/* Single Product */
.single-product .product {
    padding-top: 2rem;
}

.woocommerce div.product div.images {
    border-radius: var(--zen-radius);
    overflow: hidden;
}

.woocommerce div.product .product_title {
    font-family: var(--zen-font-heading);
    font-size: 2.2rem;
    font-weight: 300;
}

.woocommerce div.product p.price {
    color: var(--zen-wood);
    font-size: 1.5rem;
}

.woocommerce .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0 0 2rem;
    border-bottom: 1px solid var(--zen-sand);
}

.woocommerce .woocommerce-tabs ul.tabs li {
    border: none;
    background: none;
    border-radius: 0;
    padding: 0;
    margin: 0 2rem 0 0;
}

.woocommerce .woocommerce-tabs ul.tabs li a {
    font-family: var(--zen-font-body);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--zen-stone);
    padding: 1rem 0;
}

.woocommerce .woocommerce-tabs ul.tabs li.active a {
    color: var(--zen-ink);
    border-bottom: 2px solid var(--zen-wood);
}

/* Cart */
.woocommerce-cart .woocommerce table.cart {
    border: 1px solid var(--zen-sand);
    border-radius: var(--zen-radius);
}

.woocommerce table.cart th {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Checkout */
.woocommerce form .form-row label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    border: 1px solid var(--zen-sand);
    border-radius: var(--zen-radius);
    padding: 0.8rem 1rem;
    font-family: var(--zen-font-body);
    transition: var(--zen-transition);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--zen-wood);
    box-shadow: 0 0 0 2px rgba(139,115,85,0.1);
    outline: none;
}

/* ===== CUSTOMIZATION PAGE ===== */
.customization-page {
    padding-top: 120px;
}

.customization-hero {
    text-align: center;
    padding: 4rem 0;
    background: var(--zen-mist);
}

.customization-form {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    background: white;
    border-radius: var(--zen-radius);
    border: 1px solid rgba(196,181,160,0.15);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    color: var(--zen-ink);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--zen-sand);
    border-radius: var(--zen-radius);
    font-family: var(--zen-font-body);
    font-size: 0.95rem;
    transition: var(--zen-transition);
    background: var(--zen-warm-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--zen-wood);
    box-shadow: 0 0 0 3px rgba(139,115,85,0.1);
    outline: none;
}

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

/* ===== AI DESIGN SECTION ===== */
.ai-design-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.ai-design-prompt {
    background: white;
    border: 1px solid var(--zen-sand);
    border-radius: var(--zen-radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.ai-design-prompt textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--zen-sand);
    border-radius: var(--zen-radius);
    font-family: var(--zen-font-body);
    font-size: 1rem;
    min-height: 100px;
    resize: vertical;
    margin-bottom: 1rem;
}

.ai-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.ai-result-card {
    background: white;
    border-radius: var(--zen-radius);
    overflow: hidden;
    border: 1px solid rgba(196,181,160,0.15);
}

.ai-result-image {
    height: 300px;
    background: var(--zen-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-result-content {
    padding: 1.5rem;
}

/* ===== LOADING & ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes breathe {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.zen-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
}

.zen-loading span {
    width: 8px;
    height: 8px;
    background: var(--zen-wood);
    border-radius: 50%;
    animation: breathe 1.5s ease-in-out infinite;
}

.zen-loading span:nth-child(2) { animation-delay: 0.3s; }
.zen-loading span:nth-child(3) { animation-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title { font-size: 3rem; }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        height: 400px;
        margin-top: 2rem;
    }

    .customization-content {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .preorder-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html { font-size: 15px; }

    h1, .hero-title { font-size: 2.4rem; }
    h2 { font-size: 1.8rem; }

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

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--zen-warm-white);
        padding: 2rem;
        border-bottom: 1px solid var(--zen-sand);
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }

    .philosophy-values {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

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

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .ai-results-grid {
        grid-template-columns: 1fr;
    }

    .preorder-steps {
        grid-template-columns: 1fr;
    }

    .customization-tabs {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .header-inner { padding: 1rem; }
    .hero-content { padding: 2rem 1rem; }
    .hero-title { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
}
