/*
Theme Name: OpsVault
Theme URI: https://opsvault.online
Author: OpsVault
Author URI: https://opsvault.online
Description: OpsVault Zero-Friction Theme — A production-ready WordPress theme built for WooCommerce + Elementor. Sell premium digital operational toolkit bundles across 6 B2B niches. Fully customizable via Elementor page builder. Includes all page templates, WooCommerce overrides, and global brand system.
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: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: opsvault
Tags: woocommerce, elementor, digital-products, business, clean, modern, full-site-editing
*/

/* ============================================================
   OPSVAULT GLOBAL BRAND DESIGN SYSTEM
   Extracted from OpsVault Logo & Approved HTML Design
   ============================================================ */

:root {
    /* --- PRIMARY BRAND COLORS --- */
    --brand-cyan:       #38BDF8;
    --brand-teal:       #2DD4BF;
    --brand-dark:       #1E293B;
    --brand-gray:       #64748B;
    --brand-light-gray: #94A3B8;
    --bg-light:         #F8FAFC;
    --bg-white:         #FFFFFF;

    /* --- GRADIENTS --- */
    --gradient-main:    linear-gradient(135deg, #38BDF8 0%, #2DD4BF 100%);
    --gradient-dark:    linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    --gradient-hero-bg: radial-gradient(circle at top right, #E0F2FE, #fff);

    /* --- TYPOGRAPHY --- */
    --font-heading:     'Poppins', sans-serif;
    --font-body:        'Inter', sans-serif;

    /* --- SPACING --- */
    --section-padding:  6rem 0;
    --container-max:    1200px;
    --border-radius:    8px;
    --border-radius-lg: 20px;

    /* --- SHADOWS --- */
    --shadow-card:      0 10px 40px -10px rgba(0,0,0,0.10);
    --shadow-hover:     0 25px 60px -12px rgba(0,0,0,0.20);
    --shadow-btn:       0 4px 15px rgba(56, 189, 248, 0.30);
    --shadow-btn-hover: 0 10px 25px rgba(56, 189, 248, 0.40);

    /* --- BORDERS --- */
    --border-light:     1px solid #E2E8F0;
    --border-cyan:      2px solid var(--brand-cyan);
}

/* ============================================================
   BASE RESET & BODY
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html { font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--brand-dark);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--brand-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--brand-gray); line-height: 1.75; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   UTILITY CLASSES (available globally & inside Elementor)
   ============================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--brand-cyan);
    margin-bottom: 1rem;
    display: block;
}

.text-center { text-align: center; }
.text-white  { color: #fff !important; }

/* ============================================================
   BUTTON SYSTEM
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    line-height: 1;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-btn-hover);
    color: #fff;
}

.btn-secondary {
    background: var(--brand-dark);
    color: #fff;
}
.btn-secondary:hover {
    background: #0F172A;
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid #E2E8F0;
    color: var(--brand-dark);
}
.btn-outline:hover {
    border-color: var(--brand-dark);
    background: var(--brand-dark);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--brand-cyan);
    border: 2px solid var(--brand-cyan);
}
.btn-ghost:hover {
    background: var(--brand-cyan);
    color: #fff;
}

.btn-full { width: 100%; }

.btn-sm  { padding: 0.6rem 1.2rem; font-size: 0.875rem; }
.btn-lg  { padding: 1.25rem 2.5rem; font-size: 1.1rem; }

/* ============================================================
   CARD SYSTEM
   ============================================================ */
.card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid #F1F5F9;
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-teal);
}

.card-light {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid #E2E8F0;
}

/* ============================================================
   BADGE / TAG SYSTEM
   ============================================================ */
.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-cyan  { background: rgba(56,189,248,0.15); color: #0369A1; }
.badge-teal  { background: rgba(45,212,191,0.15); color: #0F766E; }
.badge-dark  { background: var(--brand-dark); color: #fff; }
.badge-red   { background: #FEE2E2; color: #991B1B; }

/* Item format tags */
.item-tag      { font-size: 0.7rem; font-weight: 700; padding: 2px 6px; border-radius: 4px; margin-right: 5px; }
.tag-notion    { background: #E2E8F0; color: #0F172A; }
.tag-excel     { background: #DCFCE7; color: #166534; }
.tag-sheets    { background: #DBEAFE; color: #1D4ED8; }
.tag-pdf       { background: #FEE2E2; color: #991B1B; }

/* ============================================================
   SECTION LAYOUT HELPERS
   ============================================================ */
.section-pad    { padding: var(--section-padding); }
.section-pad-sm { padding: 4rem 0; }
.section-pad-lg { padding: 8rem 0; }

.bg-white   { background: var(--bg-white); }
.bg-light   { background: var(--bg-light); }
.bg-dark    { background: var(--brand-dark); }
.bg-gradient{ background: var(--gradient-main); }

/* ============================================================
   FORMS (WooCommerce + Contact Forms)
   ============================================================ */
.ov-input,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: var(--border-radius);
    border: 1.5px solid #E2E8F0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--brand-dark);
    background: var(--bg-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.ov-input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 3px rgba(56,189,248,0.15);
}

/* ============================================================
   WOOCOMMERCE GLOBAL OVERRIDES
   ============================================================ */
.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--brand-cyan) !important;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background: var(--gradient-main) !important;
    color: #fff !important;
    border-radius: var(--border-radius) !important;
    font-weight: 700 !important;
    font-family: var(--font-body) !important;
    padding: 0.9rem 1.8rem !important;
    border: none !important;
    transition: all 0.3s !important;
    box-shadow: var(--shadow-btn) !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-btn-hover) !important;
    color: #fff !important;
}

.woocommerce ul.products li.product .price { color: var(--brand-dark); font-weight: 800; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-heading); font-weight: 700; }

/* Star ratings */
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before { color: #F59E0B; }

/* ============================================================
   ELEMENTOR OVERRIDES (ensure brand system works inside builder)
   ============================================================ */
.elementor-widget-heading .elementor-heading-title { font-family: var(--font-heading); }
.elementor-widget-text-editor { color: var(--brand-gray); }

/* Elementor button overrides to use our brand */
.elementor-button.elementor-button-link,
.elementor-button {
    border-radius: var(--border-radius) !important;
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
}

/* ============================================================
   HEADER (PHP fallback — overridden by Elementor Theme Builder)
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: var(--border-light);
    z-index: 9999;
    padding: 1.25rem 0;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-dark);
    font-family: var(--font-heading);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--brand-cyan); }

.nav-mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--brand-dark);
    background: none;
    border: none;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: block; }

    .nav-links.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1.5rem;
        border-bottom: var(--border-light);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        gap: 1.25rem;
    }
}

/* ============================================================
   FOOTER (PHP fallback — overridden by Elementor Theme Builder)
   ============================================================ */
.site-footer {
    background: var(--brand-dark);
    color: #94A3B8;
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-family: var(--font-heading);
}

.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col a { color: #94A3B8; transition: color 0.2s; }
.footer-col a:hover { color: var(--brand-teal); }

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.footer-social a {
    font-size: 1.1rem;
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}
.footer-social a:hover { background: var(--brand-cyan); }

.footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HOMEPAGE SECTIONS (PHP fallback styles)
   ============================================================ */

/* HERO */
.hero-section {
    padding: 6rem 0;
    background: var(--gradient-hero-bg);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 968px) {
    .hero-grid { grid-template-columns: 1fr; }
}
.hero-visual {
    background: var(--gradient-dark);
    border-radius: var(--border-radius-lg);
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 4px solid #E2E8F0;
}

/* PROBLEM */
.problem-section { padding: 5rem 0; background: var(--bg-white); }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.pain-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    border-left: 5px solid #EF4444;
}

/* TESTIMONIALS */
.testimonials-section { padding: 6rem 0; background: var(--bg-white); text-align: center; }
.testi-slider {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 1.5rem; padding: 2rem 0; scrollbar-width: none; -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}
.testi-slider::-webkit-scrollbar { display: none; }
.testi-card {
    flex: 0 0 320px; scroll-snap-align: center; background: var(--bg-light);
    padding: 2rem; border-radius: var(--border-radius-lg); border: 1px solid #E2E8F0;
    text-align: left; box-shadow: var(--shadow-card); transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-5px); border-color: var(--brand-cyan); }
.testi-stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 1rem; }
.testi-quote { font-style: italic; color: var(--brand-dark); font-weight: 500; margin-bottom: 1.5rem; font-size: 0.95rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-main); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testi-meta h4 { font-size: 0.95rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 2px; }
.testi-meta p { font-size: 0.8rem; color: var(--brand-gray); font-weight: 600; }

/* MODULES / PRODUCT CARDS */
.modules-section { padding: 6rem 0; background: var(--bg-light); }
.modules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; margin-top: 3rem; }
.module-card {
    background: var(--bg-white); border-radius: var(--border-radius-lg); padding: 2.5rem 2rem;
    box-shadow: var(--shadow-card); transition: all 0.3s; position: relative;
    border: 1px solid #F1F5F9; display: flex; flex-direction: column;
}
.module-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--brand-teal); }
.module-card.featured { border: 2px solid var(--brand-cyan); }
.card-badge {
    position: absolute; top: -14px; right: 1.5rem;
    padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
    background: var(--brand-dark); color: #fff;
}
.card-icon { font-size: 2.5rem; margin-bottom: 1.5rem; display: block; color: var(--brand-dark); }
.stack-list { margin: 1rem 0; }
.stack-list li { margin-bottom: 0.75rem; display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; line-height: 1.4; color: var(--brand-dark); }
.stack-list li i { color: var(--brand-cyan); margin-top: 3px; flex-shrink: 0; }
.price-block { margin-top: auto; padding: 1.25rem; background: var(--bg-light); border-radius: var(--border-radius); text-align: center; margin-bottom: 1.25rem; }
.price-label { font-size: 0.75rem; color: var(--brand-gray); font-weight: 600; text-transform: uppercase; }
.price-main { font-size: 2rem; font-weight: 800; color: var(--brand-dark); font-family: var(--font-heading); }
.price-old { font-size: 0.9rem; color: var(--brand-light-gray); text-decoration: line-through; }

/* GUARANTEE */
.guarantee-section { padding: 6rem 0; background: var(--bg-white); text-align: center; }
.guarantee-box {
    max-width: 860px; margin: 0 auto;
    border: 3px dashed var(--brand-cyan);
    border-radius: var(--border-radius-lg);
    padding: 4rem 3rem;
    position: relative;
    background: #F0F9FF;
}
.guarantee-icon-wrap {
    position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
    background: var(--bg-white); padding: 0.5rem 1.5rem;
    font-size: 2.5rem; border-radius: 50px;
    border: 3px dashed var(--brand-cyan);
    white-space: nowrap;
}

/* LEAD MAGNET */
.lead-magnet-section {
    padding: 5rem 0;
    background: var(--brand-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.lead-magnet-section::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: var(--brand-cyan); opacity: 0.05;
    border-radius: 50%;
}
.magnet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
@media (max-width: 768px) { .magnet-grid { grid-template-columns: 1fr; } }
.magnet-form { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.magnet-input {
    flex: 1; min-width: 220px; padding: 1rem; border-radius: var(--border-radius);
    border: none; font-size: 1rem; color: var(--brand-dark);
}

/* ============================================================
   WOOCOMMERCE PAGE STYLES
   ============================================================ */

/* Shop / Archive */
.ov-shop-header { padding: 4rem 0 2rem; text-align: center; background: var(--gradient-hero-bg); }
.ov-shop-header h1 { margin-bottom: 0.5rem; }

/* Product loop grid */
.woocommerce ul.products { gap: 1.5rem; }
.woocommerce ul.products li.product {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid #F1F5F9;
    transition: all 0.3s;
    padding: 1.5rem !important;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-teal);
}

/* Single product */
.woocommerce div.product .product_title { font-family: var(--font-heading); }
.woocommerce div.product .price { font-size: 1.75rem; font-weight: 800; color: var(--brand-dark); }
.woocommerce div.product form.cart .single_add_to_cart_button {
    background: var(--gradient-main) !important;
    color: #fff !important;
    padding: 1rem 2.5rem !important;
    border-radius: var(--border-radius) !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    border: none !important;
    box-shadow: var(--shadow-btn) !important;
    transition: all 0.3s !important;
}

/* Cart & Checkout */
.woocommerce-cart-form table.cart th,
.woocommerce-checkout form.checkout .form-row label { color: var(--brand-dark); font-weight: 600; }

/* ============================================================
   PAGE TEMPLATES
   ============================================================ */

/* About Page */
.about-hero { padding: 6rem 0; background: var(--gradient-hero-bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

/* Contact Page */
.contact-section { padding: 6rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* Opt-in / Lead Magnet Landing Page */
.optin-hero { min-height: 80vh; display: flex; align-items: center; background: var(--gradient-dark); padding: 4rem 0; }
.optin-box { max-width: 680px; margin: 0 auto; text-align: center; }

/* Thank You Page */
.thankyou-section { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 0; }
.thankyou-box { max-width: 600px; }
.thankyou-icon { font-size: 4rem; color: var(--brand-teal); margin-bottom: 2rem; }

/* Affiliate Page */
.affiliate-hero { padding: 6rem 0; background: var(--gradient-dark); color: #fff; text-align: center; }
.affiliate-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin: 4rem 0; }
.affiliate-stat-card { text-align: center; padding: 2.5rem; background: var(--bg-light); border-radius: var(--border-radius-lg); }
.affiliate-stat-number { font-size: 3rem; font-weight: 900; font-family: var(--font-heading); }

/* Niche Landing Page */
.niche-hero { padding: 5rem 0; background: var(--gradient-hero-bg); }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; } }
.tier-card {
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    border: 2px solid #E2E8F0;
    position: relative;
    transition: all 0.3s;
}
.tier-card:hover { border-color: var(--brand-cyan); box-shadow: var(--shadow-hover); }
.tier-card.tier-featured {
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 4px rgba(56,189,248,0.1);
}
.tier-name { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-bottom: 0.5rem; }
.tier-price { font-size: 3rem; font-weight: 900; font-family: var(--font-heading); color: var(--brand-dark); margin: 1rem 0; }
.tier-price span { font-size: 1.2rem; color: var(--brand-gray); }
.tier-includes li { padding: 0.6rem 0; border-bottom: 1px solid #F1F5F9; font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.tier-includes li:last-child { border-bottom: none; }
.tier-includes li i { color: var(--brand-teal); flex-shrink: 0; }

/* ============================================================
   UTILITY / MISC
   ============================================================ */
.divider { border: none; border-top: 1px solid #E2E8F0; margin: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* Scroll-reveal animation helper */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* WooCommerce download table */
.woocommerce-MyAccount-downloads td a { color: var(--brand-cyan); font-weight: 600; }
.woocommerce-MyAccount-downloads td a:hover { color: var(--brand-teal); }
