/*
 * OPTEAM Construct — Global Styles
 * Se încarcă pe TOATE paginile, după style.css (child).
 * Conținut: toast, badge legal fallback, bg-particle, mobile nav overlay,
 *           Astra resets, WooCommerce resets globale.
 *
 * IMPORTANT: Nu adăuga @import în acest fișier.
 * CSS-ul specific per-pagină se află în assets/css/[pagina].css
 */

/* ============================================================
   ASTRA RESETS GLOBALE
   Astra injectează stiluri care interferează cu layout-ul custom.
   ============================================================ */
.ast-container,
.ast-separate-container .ast-article-single,
#primary,
#secondary {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
}

.ast-breadcrumbs-wrapper,
.ast-above-header-wrap,
.ast-below-header-wrap,
.ast-mobile-header-wrap,
#ast-scroll-top,
.ast-scroll-top-icon,
.ast-scroll-to-top-right,
#bg-destruct-canvas {
    display: none !important;
}

/* Hide Astra/WP default page titles on custom template pages */
.site-content .entry-title,
.site-content .page-title,
.ast-archive-description,
.woocommerce-products-header__title {
    display: none !important;
}

/* ============================================================
   WOOCOMMERCE PLACEHOLDER IMAGE — dark override global
   WC default placeholder is a white PNG. On dark theme it
   destroys readability. Override everywhere it appears.
   ============================================================ */
.woocommerce-placeholder,
img[src*="woocommerce-placeholder"],
img[src*="placeholder.png"] {
    background: linear-gradient(145deg, rgba(242, 183, 5, 0.07) 0%, var(--bg-secondary) 100%) !important;
    border-radius: 14px;
    filter: brightness(0.15) sepia(1) hue-rotate(10deg) saturate(3) !important;
    mix-blend-mode: luminosity;
}

/* Wrapper approach — WC wraps images in <a> or <div>, color the container */
.woocommerce ul.products li.product a img[src*="placeholder"],
.woocommerce-page ul.products li.product a img[src*="placeholder"],
.woocommerce table.shop_table img[src*="placeholder"] {
    background: var(--bg-secondary) !important;
    filter: brightness(0.15) sepia(1) hue-rotate(10deg) saturate(3) !important;
}

/* Universal fallback placeholder style for all custom PHP placeholders */
.ot-thumb-fallback,
.ot-post-thumb-fallback,
.ot-card-thumb-fallback,
.ot-sp-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(242, 183, 5, 0.06) 0%, var(--bg-secondary) 100%) !important;
    color: var(--accent-gold);
    border: 1px solid var(--border-glass);
}

.ot-thumb-fallback svg,
.ot-post-thumb-fallback svg,
.ot-card-thumb-fallback svg,
.ot-sp-placeholder svg {
    opacity: 0.5;
    color: var(--accent-gold);
}

.ot-thumb-fallback span,
.ot-post-thumb-fallback span,
.ot-sp-placeholder span {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============================================================
   BACKGROUND PARTICLES (header.php)
   ============================================================ */
.bg-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-gold);
    opacity: 0;
    animation: particleFloat 8s infinite ease-in-out;
    pointer-events: none;
}

.bg-particle-1  { width: 3px;  height: 3px;  top: 15%; left: 20%; animation-delay: 0s;    animation-duration: 9s; }
.bg-particle-2  { width: 2px;  height: 2px;  top: 35%; left: 65%; animation-delay: 1.5s;  animation-duration: 11s; }
.bg-particle-3  { width: 4px;  height: 4px;  top: 55%; left: 40%; animation-delay: 3s;    animation-duration: 8s; }
.bg-particle-4  { width: 2px;  height: 2px;  top: 70%; left: 80%; animation-delay: 4.5s;  animation-duration: 12s; }
.bg-particle-5  { width: 3px;  height: 3px;  top: 25%; left: 85%; animation-delay: 2s;    animation-duration: 10s; }
.bg-particle-6  { width: 2px;  height: 2px;  top: 80%; left: 30%; animation-delay: 6s;    animation-duration: 9s; }

@keyframes particleFloat {
    0%   { opacity: 0;    transform: translateY(0)     scale(1); }
    25%  { opacity: 0.6;  transform: translateY(-20px) scale(1.2); }
    75%  { opacity: 0.4;  transform: translateY(-40px) scale(0.9); }
    100% { opacity: 0;    transform: translateY(-60px) scale(1); }
}

/* ============================================================
   SCROLL LINES CANVAS (header.php)
   ============================================================ */
.scroll-lines-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* ============================================================
   MOBILE NAV — Overlay pattern (AAM)
   Toggle .open pe #mainNav la max-width 768px
   ============================================================ */
@media (max-width: 768px) {
    .main-nav.open {
        display: flex !important;
    }
}

/* ============================================================
   TOAST NOTIFICATION — folosit de main.js (window.rgToast)
   HTML injectat în footer.php
   ============================================================ */
.rg-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    min-width: 280px;
    max-width: 380px;
    background: rgba(15, 25, 40, 0.92);
    border: 1px solid rgba(242, 183, 5, 0.25);
    border-radius: 16px;
    padding: 16px 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    transform: translateY(120%) !important;
    opacity: 0 !important;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity  0.4s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0.4s;
}

.rg-toast.is-open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity  0.4s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s;
}

.rg-toast__title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.rg-toast__msg {
    font-size: 0.92rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.rg-toast__actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.rg-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(242, 183, 5, 0.3);
    color: var(--accent-gold);
    background: rgba(242, 183, 5, 0.06);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.rg-btn--primary {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: transparent;
}

.rg-btn:hover {
    background: rgba(242, 183, 5, 0.15);
    border-color: rgba(242, 183, 5, 0.5);
}

.rg-btn--primary:hover {
    background: var(--accent-gold-hover);
    border-color: transparent;
}

@media (max-width: 480px) {
    .rg-toast {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: 100%;
    }
}

/* ============================================================
   FOOTER BADGES — force visibility on ALL pages
   Astra + WooCommerce aggressively override img styles.
   ============================================================ */
.site-footer .footer-legal-logos,
.site-footer .footer-payment-logos {
    display: flex !important;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.site-footer .footer-legal-logos img,
.site-footer .footer-stripe-logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: none !important;
}

/* Fallback text for broken images */
.legal-badge-fallback,
.stripe-badge-fallback {
    display: none;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.footer-legal-logos img.is-broken,
.legal-badge-img.is-broken,
.stripe-badge-img.is-broken {
    display: none !important;
}

.footer-legal-logos img.is-broken + .legal-badge-fallback,
.legal-badge-img.is-broken       + .legal-badge-fallback,
.stripe-badge-img.is-broken      + .stripe-badge-fallback {
    display: inline-block;
}

/* ============================================================
   POPUP OVERLAY — folosit în page-cart.php, single-product.php
   ============================================================ */
.ot-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.25s ease;
}

.ot-popup-card {
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-strong);
}

.ot-popup-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.ot-popup-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.ot-popup-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.ot-popup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    border: none;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.ot-popup-btn:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.ot-popup-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: border-color var(--transition-fast), color var(--transition-fast);
}

.ot-popup-btn-outline:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ============================================================
   GLASS CARD — componentă reutilizabilă
   ============================================================ */
.ot-glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: border-color var(--transition-medium), transform var(--transition-medium);
}

.ot-glass-card:hover {
    border-color: var(--border-hover);
}

/* ============================================================
   HOVER LIFT — utility
   ============================================================ */
.ot-hover-lift {
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.ot-hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

/* ============================================================
   PILL BADGE
   ============================================================ */
.ot-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(242, 183, 5, 0.08);
    border: 1px solid rgba(242, 183, 5, 0.2);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

/* ============================================================
   BUTTONS — global reusable
   ============================================================ */
.ot-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    border: none;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.ot-btn-gold:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 183, 5, 0.3);
}

.ot-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.ot-btn-outline:hover {
    border-color: var(--border-hover);
    background: rgba(242, 183, 5, 0.05);
    transform: translateY(-2px);
}

/* ============================================================
   FORM INPUTS — global (contact, estimator, offer)
   NUCLEAR dark override: NO white backgrounds on ANY input
   ============================================================ */
.ot-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 14, 23, 0.8);
    border: 1px solid rgba(242, 183, 5, 0.12);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    -webkit-appearance: none;
}

.ot-input:focus {
    border-color: rgba(242, 183, 5, 0.5);
    background: rgba(10, 14, 23, 0.95);
    box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.1);
}

.ot-input::placeholder {
    color: var(--text-muted);
}

textarea.ot-input {
    border-radius: 12px;
}

.ot-select {
    cursor: pointer;
    color-scheme: dark;
    border-radius: 12px;
    min-height: 50px;
    line-height: 1.4;
}

.ot-select option {
    background: #0F1923;
    color: #F0F2F5;
}

.ot-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

/* ============================================================
   NUCLEAR: Dark background on ALL form elements site-wide
   Astra/WC/browser defaults set white bg — override everything
   ============================================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="color"],
select,
textarea,
.input-text,
.form-row input,
.form-row select,
.form-row textarea,
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="number"],
.woocommerce input[type="password"],
.woocommerce select,
.woocommerce textarea,
.woocommerce-page input[type="text"],
.woocommerce-page select,
.woocommerce-page textarea,
.select2-container--default .select2-selection--single {
    background: rgba(10, 14, 23, 0.8) !important;
    background-color: rgba(10, 14, 23, 0.8) !important;
    color: var(--text-primary, #F0F2F5) !important;
    border: 1px solid rgba(242, 183, 5, 0.12) !important;
    border-radius: 12px !important;
    font-family: inherit !important;
    -webkit-appearance: none !important;
    color-scheme: dark !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus,
.input-text:focus,
.woocommerce input:focus,
.woocommerce select:focus,
.woocommerce textarea:focus {
    background: rgba(10, 14, 23, 0.95) !important;
    border-color: rgba(242, 183, 5, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.1) !important;
    outline: none !important;
}

input::placeholder,
textarea::placeholder,
.input-text::placeholder {
    color: var(--text-muted, #6B7D95) !important;
}

select option,
.woocommerce select option {
    background: #0F1923 !important;
    color: #F0F2F5 !important;
}

/* Select2 (WC checkout dropdowns) */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--text-primary, #F0F2F5) !important;
}

.select2-container--default .select2-results__option {
    background: #0F1923 !important;
    color: #F0F2F5 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: rgba(242, 183, 5, 0.15) !important;
    color: var(--accent-gold, #F2B705) !important;
}

.select2-dropdown {
    background: #0F1923 !important;
    border: 1px solid rgba(242, 183, 5, 0.12) !important;
    border-radius: 12px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background: rgba(10, 14, 23, 0.8) !important;
    color: #F0F2F5 !important;
    border: 1px solid rgba(242, 183, 5, 0.12) !important;
}

.ot-form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

@media (max-width: 600px) {
    .ot-form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left  { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px);  }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Lusion-style reveal */
.lusion-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.lusion-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

.lusion-stagger.is-in > * {
    animation: staggerFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(var(--i, 0) * 0.08s);
}

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

/* ============================================================
   WOOCOMMERCE GLOBAL RESETS
   Astra + WooCommerce injectează float/width care sparg grid-ul custom.
   ============================================================ */
.woocommerce .col2-set,
.woocommerce-page .col2-set,
.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
}

.woocommerce-notices-wrapper:empty {
    display: none;
}

/* ============================================================
   TEXT EFFECTS
   ============================================================ */

/* Gradient shimmer pe titluri h1/h2 */
.ot-text-shimmer {
    background: linear-gradient(
        110deg,
        var(--text-primary) 0%,
        var(--accent-gold) 40%,
        var(--text-primary) 55%,
        var(--text-primary) 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s ease-in-out infinite;
}

@keyframes textShimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -50% center; }
}

/* Gold glow pe accent text (logo, headings) */
.ot-text-glow {
    color: var(--accent-gold);
    text-shadow:
        0 0 12px rgba(242, 183, 5, 0.6),
        0 0 32px rgba(242, 183, 5, 0.25);
    animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    from { text-shadow: 0 0 8px rgba(242, 183, 5, 0.5),  0 0 24px rgba(242, 183, 5, 0.2); }
    to   { text-shadow: 0 0 18px rgba(242, 183, 5, 0.85), 0 0 48px rgba(242, 183, 5, 0.35); }
}

/* Logo link — scale + glow pe hover */
.ot-logo-anim {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    transition: transform var(--transition-fast), filter var(--transition-fast);
}

.ot-logo-anim:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 0 12px rgba(242, 183, 5, 0.4));
}

/* Nav link — underline care se extinde din centru */
.ot-nav-slide {
    position: relative;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.ot-nav-slide::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 999px;
    transform: translateX(-50%);
    transition: width var(--transition-medium);
    box-shadow: 0 0 8px rgba(242, 183, 5, 0.6);
}

.ot-nav-slide:hover::after,
.ot-nav-slide.active::after {
    width: 100%;
}

.ot-nav-slide.active {
    color: var(--accent-gold);
}

/* ============================================================
   BUTTON EFFECTS
   ============================================================ */

/* Shine sweep pe .ot-btn-gold */
.ot-btn-gold {
    position: relative;
    overflow: hidden;
}

.ot-btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.ot-btn-gold:hover::before {
    left: 150%;
}

/* Puls glow pe butonul de submit contact */
.ot-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 28px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    border: none;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    animation: btnGlowPulse 2.5s ease-in-out infinite;
}

.ot-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.ot-btn-submit:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(242, 183, 5, 0.45);
    animation: none;
}

.ot-btn-submit:hover::before {
    left: 150%;
}

@keyframes btnGlowPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(242, 183, 5, 0); }
    50%       { box-shadow: 0 0 20px 4px rgba(242, 183, 5, 0.3); }
}

/* Cart icon bounce pe hover */
.ot-cart-bounce {
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.ot-cart-bounce:hover {
    animation: cartBounce 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97);
    color: var(--accent-gold);
}

@keyframes cartBounce {
    0%  { transform: scale(1)    translateY(0); }
    30% { transform: scale(1.2)  translateY(-4px); }
    60% { transform: scale(0.92) translateY(2px); }
    80% { transform: scale(1.06) translateY(-2px); }
    100%{ transform: scale(1)    translateY(0); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right,
    .lusion-reveal, .bg-orb, .bg-particle,
    .ot-text-shimmer, .ot-text-glow, .ot-btn-submit {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .ot-text-shimmer {
        -webkit-text-fill-color: var(--text-primary);
        background: none;
    }

    .ot-text-glow {
        text-shadow: none;
    }
}
