/*
Theme Name: GetFromTaimur Motion Commerce
Theme URI: https://www.getfromtaimur.com/
Author: GetFromTaimur
Author URI: https://www.getfromtaimur.com/
Description: Animated one-page WordPress theme with Gutenberg support, WooCommerce support, blog templates, and a NanoTub-style landing page starter built by GetFromTaimur.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: getfromtaimur-motion-commerce
Tags: one-column, custom-logo, custom-menu, featured-images, full-site-editing, blog, e-commerce, landing-page
*/

:root {
    --navy: #060E1A;
    --navy-mid: #0A1628;
    --navy-light: #0E2040;
    --teal: #00C9B1;
    --teal-glow: rgba(0, 201, 177, 0.15);
    --teal-border: rgba(0, 201, 177, 0.25);
    --gold: #F5A623;
    --gold-glow: rgba(245, 166, 35, 0.15);
    --white: #FFFFFF;
    --muted: #64748B;
    --body: #94A3B8;
    --card: rgba(255,255,255,0.02);
    --card-border: rgba(255,255,255,0.08);
    --radius: 24px;
    --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--body);
    overflow-x: hidden;
}
a { color: var(--teal); }
a:hover { color: var(--white); }
img { max-width: 100%; height: auto; }
.screen-reader-text { position: absolute; left: -9999px; }

#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
}

.site-header {
    position: fixed;
    top: 3px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 60px;
    min-height: 68px;
    background: rgba(6, 14, 26, 0);
    transition: background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s;
}
.main-nav.scrolled {
    background: rgba(6, 14, 26, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-brand,
.nav-brand:visited {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.3px;
}
.nav-brand span { color: var(--teal); }
.custom-logo-link img { max-height: 48px; width: auto; display: block; }
.nav-menu-wrap {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}
.nav-menu,
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}
.nav-menu a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a { color: var(--teal); }
.nav-cta,
.button,
.wp-element-button,
button,
input[type="submit"] {
    background: var(--teal);
    color: var(--navy);
    border: none;
    padding: 14px 24px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover,
.button:hover,
.wp-element-button:hover,
button:hover,
input[type="submit"]:hover {
    color: var(--navy);
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 201, 177, 0.16);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: none;
}
.btn-outline:hover { color: var(--white); }
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    padding: 10px 12px;
    min-width: auto;
}

.site-content,
.site-main,
.content-area {
    position: relative;
    z-index: 1;
}
.entry-content > *:first-child,
.page-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child,
.page-content > *:last-child { margin-bottom: 0; }

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 60%, rgba(0,201,177,0.07) 0%, transparent 70%), radial-gradient(ellipse at 80% 20%, rgba(245,166,35,0.05) 0%, transparent 60%), var(--navy);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 120px 40px 80px;
    margin: 0 auto;
}
.scene-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}
.scene-tag::before, .scene-tag::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--teal);
    opacity: 0.5;
}
.hero-eyebrow {
    color: var(--body);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}
.hero-eyebrow em { font-style: normal; color: var(--white); font-weight: 600; }
.hero h1 {
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
}
.teal { color: var(--teal); }
.gold { color: var(--gold); }
.hero-sub {
    font-size: 20px;
    line-height: 1.7;
    color: var(--body);
    max-width: 680px;
    margin: 0 auto 48px;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 1.1s forwards;
}
.btn-primary {
    background: var(--teal);
    color: var(--navy);
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    z-index: 2;
}
.scroll-hint i { font-size: 18px; }
.scene-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-border), transparent);
    margin: 0;
}
.section {
    padding: 120px 60px;
    position: relative;
}
.section-inner,
.content-container,
.site-main .woocommerce,
.shop-shell,
.blog-shell,
.single-shell,
.archive-shell,
.error-shell {
    max-width: var(--container);
    margin: 0 auto;
}
.scene-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.scene-num {
    width: 36px;
    height: 36px;
    border: 1px solid var(--teal-border);
    color: var(--teal);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.scene-name {
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.section-title {
    color: var(--white);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0 0 20px;
}
.section-desc {
    color: var(--body);
    font-size: 18px;
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 60px;
}
.science-section { background: var(--navy-mid); }
.science-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.bubble-vis {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bubble-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--teal-border);
    animation: pulse-ring 3s ease-in-out infinite;
}
.bubble-ring:nth-child(1) { width: 120px; height: 120px; animation-delay: 0s; }
.bubble-ring:nth-child(2) { width: 220px; height: 220px; animation-delay: 0.5s; opacity: 0.7; }
.bubble-ring:nth-child(3) { width: 320px; height: 320px; animation-delay: 1s; opacity: 0.4; }
.bubble-ring:nth-child(4) { width: 420px; height: 420px; animation-delay: 1.5s; opacity: 0.2; }
.bubble-core { position: relative; z-index: 2; text-align: center; }
.bubble-big-num { font-size: 58px; font-weight: 900; color: var(--white); line-height: 1; }
.bubble-big-num span { color: var(--teal); font-size: 28px; }
.bubble-label { color: var(--body); font-size: 14px; margin-top: 8px; letter-spacing: 1px; }
.science-text p { color: var(--body); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.compare-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.compare-col {
    padding: 24px;
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
}
.compare-col.nanotub { border-top: 3px solid var(--teal); }
.compare-col.standard { border-top: 3px solid var(--muted); }
.compare-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 16px; }
.compare-col.nanotub h4 { color: var(--teal); }
.compare-col.standard h4 { color: var(--muted); }
.compare-col ul,
.element-block ul,
.demo-perks,
.contact-row { margin: 0; padding: 0; list-style: none; }
.compare-col li {
    color: var(--body);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}
.compare-col.nanotub li i { color: var(--teal); font-size: 12px; margin-top: 4px; }
.compare-col.standard li i { color: var(--muted); font-size: 12px; margin-top: 4px; }
.synergy-section { background: var(--navy); }
.synergy-merge { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; margin-bottom: 48px; }
.element-block { padding: 50px 40px; background: var(--card); border: 1px solid rgba(255,255,255,0.06); }
.element-block.h2-block { border-top: 4px solid var(--gold); }
.element-block.o2-block { border-top: 4px solid var(--teal); }
.element-sym { font-size: 72px; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.h2-block .element-sym, .h2-block .element-role, .h2-block li i { color: var(--gold); }
.o2-block .element-sym, .o2-block .element-role, .o2-block li i { color: var(--teal); }
.element-role { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 28px; }
.element-block li { color: var(--body); font-size: 15px; line-height: 1.6; margin-bottom: 18px; display: flex; gap: 12px; }
.element-block li strong { color: var(--white); }
.plus-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    background: var(--navy);
    border-top: 4px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.synergy-result {
    background: linear-gradient(135deg, var(--gold-glow), var(--teal-glow));
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px 50px;
    text-align: center;
}
.synergy-result h3 { color: var(--white); font-size: 24px; font-weight: 800; margin: 0 0 14px; }
.synergy-result p { color: var(--body); font-size: 16px; line-height: 1.8; max-width: 800px; margin: 0 auto; }
.clinical-section { background: var(--navy-mid); }
.stats-ticker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.stat-block {
    padding: 40px 32px;
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-top: 3px solid var(--teal);
    position: relative;
    overflow: hidden;
}
.stat-block:nth-child(2) { border-top-color: var(--gold); }
.stat-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-border), transparent);
}
.stat-block:nth-child(2)::after { background: linear-gradient(90deg, transparent, rgba(245,166,35,0.2), transparent); }
.stat-num { font-size: 64px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-num.small { font-size: 48px; }
.stat-title { color: var(--white); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.stat-desc { color: var(--body); font-size: 14px; line-height: 1.6; }
.stat-source { margin-top: 16px; font-size: 11px; color: var(--muted); font-style: italic; }
.studies-bar {
    background: linear-gradient(90deg, var(--teal-glow), var(--gold-glow));
    border: 1px solid var(--teal-border);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.studies-bar i { font-size: 32px; color: var(--teal); flex-shrink: 0; }
.studies-bar h4 { color: var(--white); font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.studies-bar p { color: var(--body); font-size: 15px; line-height: 1.5; margin: 0; }
.features-section { background: var(--navy); }
.ozone-split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.ozone-panel {
    padding: 40px;
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
}
.ozone-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}
.ozone-panel.therapy::before { background: var(--gold); }
.ozone-panel.sanitation::before { background: var(--teal); }
.ozone-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.ozone-panel.therapy .ozone-icon { background: var(--gold-glow); color: var(--gold); }
.ozone-panel.sanitation .ozone-icon { background: var(--teal-glow); color: var(--teal); }
.ozone-panel h3 { color: var(--white); font-size: 20px; font-weight: 700; margin: 0 0 14px; }
.ozone-panel p { color: var(--body); font-size: 15px; line-height: 1.7; margin: 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feat-card { padding: 28px 24px; background: var(--card); border: 1px solid rgba(255,255,255,0.06); text-align: center; }
.feat-card i { font-size: 28px; color: var(--teal); margin-bottom: 14px; display: block; }
.feat-card:nth-child(even) i { color: var(--gold); }
.feat-card h4 { color: var(--white); font-size: 15px; font-weight: 700; margin: 0 0 8px; }
.feat-card p { color: var(--body); font-size: 13px; line-height: 1.5; margin: 0; }
.demo-section {
    background: radial-gradient(ellipse at 50% 0%, rgba(0,201,177,0.08) 0%, transparent 60%), var(--navy-mid);
}
.demo-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.demo-copy h2 { color: var(--white); font-size: clamp(32px, 4vw, 48px); font-weight: 900; line-height: 1.15; letter-spacing: -1px; margin: 0 0 20px; }
.demo-copy p { color: var(--body); font-size: 17px; line-height: 1.8; margin: 0 0 32px; }
.demo-perks li { color: var(--body); font-size: 16px; line-height: 1.6; margin-bottom: 16px; display: flex; align-items: flex-start; gap: 14px; }
.demo-perks li i { color: var(--teal); font-size: 14px; margin-top: 4px; flex-shrink: 0; }
.demo-quote { margin-top: 40px; padding: 28px; background: var(--teal-glow); border: 1px solid var(--teal-border); }
.demo-quote p { color: var(--white); font-style: italic; font-size: 16px; line-height: 1.7; margin: 0 0 12px; }
.demo-quote span { color: var(--teal); font-size: 13px; font-weight: 700; letter-spacing: 1px; }
.demo-form { background: var(--card); border: 1px solid var(--card-border); padding: 44px 40px; }
.demo-form h3 { color: var(--white); font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.demo-form .form-sub { color: var(--body); font-size: 14px; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--body); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea,
.woocommerce form .input-text,
.woocommerce form select {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.woocommerce form .input-text:focus,
.woocommerce form select:focus { border-color: var(--teal); }
.form-group select option { background: var(--navy-mid); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 18px; font-size: 16px; }
.form-note { text-align: center; color: var(--muted); font-size: 12px; margin-top: 14px; }
.gft-hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 0 !important; }
.closing-section { background: var(--navy); padding: 120px 60px; text-align: center; position: relative; overflow: hidden; }
.closing-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    border: 1px solid rgba(0,201,177,0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.closing-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(245,166,35,0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.closing-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.closing-inner h2 { color: var(--white); font-size: clamp(36px, 5vw, 64px); font-weight: 900; line-height: 1.1; letter-spacing: -2px; margin: 0 0 24px; }
.closing-inner p { color: var(--body); font-size: 20px; line-height: 1.7; margin: 0 0 48px; }
.closing-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.contact-row { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 10px; color: var(--body); text-decoration: none; font-size: 15px; }
.contact-item i { color: var(--teal); }
.site-footer {
    background: #030810;
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.site-footer p { color: var(--muted); font-size: 13px; margin: 0; }
.site-footer a { color: var(--teal); text-decoration: none; }
.notice-shell { padding: 120px 24px 0; }
.gft-notice {
    max-width: 860px;
    margin: 0 auto;
    padding: 18px 22px;
    border: 1px solid var(--card-border);
    background: rgba(255,255,255,0.04);
}
.gft-notice.success { border-color: rgba(0,201,177,0.35); background: rgba(0,201,177,0.08); color: #c9fff7; }
.gft-notice.error { border-color: rgba(245,166,35,0.35); background: rgba(245,166,35,0.09); color: #ffe5b8; }

.blog-shell,
.single-shell,
.archive-shell,
.shop-shell,
.error-shell {
    padding: 150px 24px 90px;
}
.page-shell {
    padding-top: 90px;
}
.sectionless-page {
    padding: 150px 24px 90px;
}
.page-header-title,
.archive-title,
.blog-title,
.single-title,
.error-title,
.woocommerce-products-header__title.page-title,
.woocommerce div.product .product_title {
    color: var(--white);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0 0 16px;
}
.page-header-desc,
.archive-description,
.blog-intro,
.single-meta,
.error-text {
    color: var(--body);
    font-size: 18px;
    line-height: 1.7;
    max-width: 860px;
}
.posts-grid,
.products.columns-4 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 28px;
    margin-top: 42px;
}
.post-card,
.woocommerce ul.products li.product {
    background: var(--card);
    border: 1px solid var(--card-border);
    overflow: hidden;
}
.post-card-thumb img,
.woocommerce ul.products li.product img { display: block; width: 100%; }
.post-card-content { padding: 24px; }
.post-card-title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--white);
    font-size: 22px;
    line-height: 1.25;
    margin: 0 0 12px;
}
.post-card-title a { color: inherit; text-decoration: none; }
.post-card-meta { color: var(--muted); font-size: 13px; margin-bottom: 12px; }
.post-card-excerpt { color: var(--body); line-height: 1.7; }
.read-more { margin-top: 16px; display: inline-flex; }
.single-article,
.page-article,
.woocommerce div.product,
.woocommerce-account .woocommerce,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    background: var(--card);
    border: 1px solid var(--card-border);
    padding: 42px;
}
.single-article .entry-content,
.page-article .entry-content { color: var(--body); line-height: 1.9; font-size: 17px; }
.single-article .entry-content h2,
.single-article .entry-content h3,
.single-article .entry-content h4,
.page-article .entry-content h2,
.page-article .entry-content h3,
.page-article .entry-content h4 {
    color: var(--white);
    margin-top: 1.8em;
}
.single-article .entry-content p,
.page-article .entry-content p,
.single-article .entry-content ul,
.page-article .entry-content ul { margin-bottom: 1.2em; }
.pagination,
.posts-navigation,
.woocommerce nav.woocommerce-pagination {
    margin-top: 36px;
    display: flex;
    justify-content: center;
}
.pagination .nav-links,
.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    border: none;
}
.pagination a,
.pagination span,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    text-decoration: none;
    background: rgba(255,255,255,0.03);
}
.pagination .current,
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--teal); color: var(--navy); border-color: var(--teal); }
.woocommerce .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--teal) !important; }
.woocommerce .quantity .qty { max-width: 96px; }
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt { background: var(--teal); color: var(--navy); }
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-top: 3px solid var(--teal);
    background: rgba(255,255,255,0.05);
    color: var(--white);
}
.woocommerce-error { border-top-color: var(--gold); }
.woocommerce table.shop_table,
.woocommerce table.shop_table th,
.woocommerce table.shop_table td { border-color: rgba(255,255,255,0.08); }
.woocommerce table.shop_table,
.woocommerce table.shop_table td,
.woocommerce table.shop_table th { color: var(--body); }
.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-result-count,
.woocommerce .orderby,
.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce-tabs,
.woocommerce-tabs p { color: var(--body); }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product { width: auto !important; float: none !important; margin: 0 !important; }
.woocommerce ul.products,
.woocommerce-page ul.products { margin: 42px 0 0; padding: 0; }
.error-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.04); opacity: 0.6; }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 1100px) {
    .main-nav { padding: 0 24px; }
    .section,
    .closing-section { padding-left: 24px; padding-right: 24px; }
    .science-layout,
    .demo-layout,
    .ozone-split { grid-template-columns: 1fr; }
    .stats-ticker { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .posts-grid,
    .products.columns-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 920px) {
    .mobile-nav-toggle { display: inline-flex; }
    .nav-menu-wrap {
        position: absolute;
        top: 100%;
        right: 24px;
        left: 24px;
        background: rgba(6, 14, 26, 0.98);
        border: 1px solid rgba(255,255,255,0.08);
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s ease;
    }
    .nav-menu-wrap.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-menu,
    .nav-menu ul { flex-direction: column; gap: 14px; }
    .nav-cta { width: 100%; }
    .synergy-merge { grid-template-columns: 1fr; }
    .plus-divider { display: none; }
    .site-footer { flex-direction: column; text-align: center; }
    .contact-row { gap: 18px; }
}
@media (max-width: 680px) {
    .hero-content { padding: 120px 20px 80px; }
    .section,
    .closing-section,
    .site-footer { padding-left: 20px; padding-right: 20px; }
    .compare-strip,
    .features-grid,
    .form-row,
    .posts-grid,
    .products.columns-4 { grid-template-columns: 1fr; }
    .single-article,
    .page-article,
    .woocommerce div.product,
    .woocommerce-account .woocommerce,
    .woocommerce-cart .woocommerce,
    .woocommerce-checkout .woocommerce { padding: 28px 22px; }
    .demo-form { padding: 30px 22px; }
}
