/**
 * Guardify Captcha Pro Stylesheet v3.5.0
 */

/* Font Inheritance: Inherits exact theme font (IRANSans, Dana, Shabnam, etc.) */
.guardify-font-inherit,
.guardify-font-inherit * {
    font-family: inherit !important;
}

.guardify-captcha-container {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    direction: rtl !important;
    text-align: right !important;
    margin: 12px 0 !important;
    clear: both !important;
    user-select: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.guardify-captcha-container * {
    box-sizing: border-box !important;
}

/* Math Challenge Header & Row */
.guardify-math-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 8px !important;
    width: 100% !important;
}

.guardify-math-title-group {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
}

.guardify-header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.guardify-math-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    background: rgba(0, 0, 0, 0.16) !important;
    padding: 10px 18px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-bottom: 6px !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1) !important;
}

.guardify-math-eq {
    font-weight: 800 !important;
    font-size: 14px !important;
    letter-spacing: 1.5px !important;
    white-space: nowrap !important;
    padding: 6px 14px !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border-radius: 12px !important;
    direction: ltr !important;
    display: inline-block !important;
    user-select: none !important;
}

.guardify-clickable-eq {
    cursor: pointer !important;
    transition: transform 0.15s ease, background 0.15s ease !important;
}

.guardify-clickable-eq:hover {
    transform: scale(1.04) !important;
    background: rgba(255, 255, 255, 0.14) !important;
}

.guardify-clickable-eq:active {
    transform: scale(0.96) !important;
}

.guardify-refresh-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-size: 13px !important;
    padding: 4px 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.2s ease, background 0.2s ease !important;
    color: inherit !important;
}

.guardify-refresh-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: rotate(90deg) !important;
}

.guardify-refresh-btn:active {
    transform: scale(0.9) rotate(180deg) !important;
}

.guardify-spinning {
    animation: guardify-spin 0.6s linear !important;
}

@keyframes guardify-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.guardify-input {
    width: 75px !important;
    height: 40px !important;
    text-align: center !important;
    border-radius: 12px !important;
    font-weight: bold !important;
    font-size: 15px !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    outline: none !important;
    background: rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

.guardify-input:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3) !important;
}

.guardify-badge {
    font-size: 11px;
    opacity: 0.85;
    white-space: nowrap;
    text-align: left;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
}

.guardify-smart-scan {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 8px;
}

.guardify-smart-scan-beam {
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #06b6d4, #6366f1, transparent);
    animation: guardify-scan-move 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes guardify-scan-move {
    0% { left: -40%; }
    100% { left: 100%; }
}

.guardify-smart-radar {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #06b6d4;
    box-shadow: 0 0 8px #06b6d4;
    margin-left: 4px;
    animation: guardify-radar-pulse 1.8s ease-in-out infinite;
}

@keyframes guardify-radar-pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px #06b6d4; }
    50% { opacity: 0.35; transform: scale(0.75); box-shadow: 0 0 2px #06b6d4; }
}

/* Slider (Drag to Verify) Styles */
.guardify-slider-wrap {
    width: 100%;
    max-width: 360px;
}
.guardify-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}
.guardify-slider-badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
}
.guardify-slider-track {
    position: relative;
    height: 42px;
    border-radius: 21px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.guardify-slider-progress {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0%;
    background: linear-gradient(90deg, #10b981, #059669);
    transition: width 0.05s linear;
}
.guardify-slider-thumb {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: grab;
    z-index: 2;
    transition: transform 0.05s linear;
}
.guardify-slider-thumb:active {
    cursor: grabbing;
}
.guardify-slider-hint {
    font-size: 11px;
    font-weight: 800 !important;
    color: inherit !important;
    opacity: 0.9 !important;
    z-index: 1;
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.guardify-slider-verified .guardify-slider-track {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
}
.guardify-slider-verified .guardify-slider-thumb {
    background: #10b981;
    color: #fff;
}

/* Icon Match Styles */
.guardify-icon-wrap {
    width: 100%;
    max-width: 340px;
}
.guardify-icon-header {
    font-size: 13px;
    margin-bottom: 6px;
}
.guardify-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 6px 0;
}
.guardify-icon-btn {
    height: 48px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    transition: all 0.2s ease;
}
.guardify-icon-btn:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.3);
}
.guardify-icon-btn.selected {
    background: rgba(99, 102, 241, 0.35);
    border-color: #6366f1;
    box-shadow: 0 0 0 2px #6366f1;
}

/* Shake Animation on Error */
@keyframes guardify-shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}
.guardify-shake-error {
    animation: guardify-shake 0.4s ease-in-out;
}

/* 1. Dark Slate Theme */
.guardify-theme-dark-slate,
.wpcf7 .guardify-theme-dark-slate,
form .guardify-theme-dark-slate,
.woocommerce .guardify-theme-dark-slate {
    background: #0f172a !important;
    border: 1px solid #1e293b !important;
    color: #f8fafc !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
}
.guardify-theme-dark-slate .guardify-math-row { background: rgba(0, 0, 0, 0.25) !important; border-color: rgba(255, 255, 255, 0.08) !important; }
.guardify-theme-dark-slate .guardify-math-eq { color: #818cf8 !important; background: rgba(255, 255, 255, 0.08) !important; }
.guardify-theme-dark-slate input.guardify-input,
.wpcf7 .guardify-theme-dark-slate input.guardify-input { color: #fff !important; background: #1e293b !important; border-color: #334155 !important; }
.guardify-theme-dark-slate .guardify-refresh-btn,
.guardify-theme-dark-slate .guardify-tts-btn { background: rgba(255, 255, 255, 0.08) !important; border-color: rgba(255, 255, 255, 0.15) !important; color: #f8fafc !important; }

/* 2. Clean Light Theme */
.guardify-theme-clean-light,
.wpcf7 .guardify-theme-clean-light,
form .guardify-theme-clean-light,
.woocommerce .guardify-theme-clean-light {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1e293b !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04) !important;
}
.guardify-theme-clean-light .guardify-math-row { background: #f8fafc !important; border-color: #e2e8f0 !important; }
.guardify-theme-clean-light .guardify-math-eq { color: #2563eb !important; background: #f1f5f9 !important; }
.guardify-theme-clean-light input.guardify-input,
.wpcf7 .guardify-theme-clean-light input.guardify-input { color: #0f172a !important; background: #ffffff !important; border-color: #cbd5e1 !important; }
.guardify-theme-clean-light .guardify-slider-track { background: #e2e8f0 !important; border-color: #cbd5e1 !important; }
.guardify-theme-clean-light .guardify-slider-hint { color: #475569 !important; }
.guardify-theme-clean-light .guardify-icon-btn { background: #f1f5f9 !important; border-color: #cbd5e1 !important; }
.guardify-theme-clean-light .guardify-refresh-btn { background: #f1f5f9 !important; border-color: #cbd5e1 !important; color: #1e293b !important; }

/* 3. Luxury Gold Theme */
.guardify-theme-luxury-gold,
.wpcf7 .guardify-theme-luxury-gold,
form .guardify-theme-luxury-gold,
.woocommerce .guardify-theme-luxury-gold {
    background: linear-gradient(135deg, #1c1917, #0c0a09) !important;
    border: 1px solid #f59e0b !important;
    color: #fef3c7 !important;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2) !important;
}
.guardify-theme-luxury-gold .guardify-math-row { background: rgba(0, 0, 0, 0.4) !important; border-color: rgba(245, 158, 11, 0.2) !important; }
.guardify-theme-luxury-gold .guardify-math-eq { color: #fbbf24 !important; background: rgba(245, 158, 11, 0.15) !important; }
.guardify-theme-luxury-gold input.guardify-input,
.wpcf7 .guardify-theme-luxury-gold input.guardify-input { color: #fde68a !important; background: #292524 !important; border-color: #78350f !important; }
.guardify-theme-luxury-gold .guardify-slider-thumb { background: #fbbf24 !important; color: #1c1917 !important; }
.guardify-theme-luxury-gold .guardify-icon-btn.selected { border-color: #fbbf24 !important; box-shadow: 0 0 0 2px #fbbf24 !important; }
.guardify-theme-luxury-gold .guardify-refresh-btn { background: rgba(245, 158, 11, 0.15) !important; border-color: rgba(245, 158, 11, 0.3) !important; color: #fef3c7 !important; }

/* 4. Cyber Glass */
.guardify-theme-cyber-glass,
.wpcf7 .guardify-theme-cyber-glass,
form .guardify-theme-cyber-glass,
.woocommerce .guardify-theme-cyber-glass {
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(6, 182, 212, 0.4) !important;
    color: #ecfeff !important;
    box-shadow: 0 4px 25px rgba(6, 182, 212, 0.2) !important;
}
.guardify-theme-cyber-glass .guardify-math-row { background: rgba(0, 0, 0, 0.3) !important; border-color: rgba(6, 182, 212, 0.2) !important; }
.guardify-theme-cyber-glass .guardify-math-eq { color: #22d3ee !important; background: rgba(6, 182, 212, 0.15) !important; }
.guardify-theme-cyber-glass input.guardify-input,
.wpcf7 .guardify-theme-cyber-glass input.guardify-input { color: #ecfeff !important; background: rgba(15, 23, 42, 0.9) !important; border-color: rgba(6, 182, 212, 0.3) !important; }
.guardify-theme-cyber-glass .guardify-refresh-btn { background: rgba(6, 182, 212, 0.15) !important; border-color: rgba(6, 182, 212, 0.3) !important; color: #ecfeff !important; }

/* 5. Nordic Frost */
.guardify-theme-nordic-frost,
.wpcf7 .guardify-theme-nordic-frost,
form .guardify-theme-nordic-frost,
.woocommerce .guardify-theme-nordic-frost {
    background: #0f172a !important;
    border: 1px solid rgba(56, 189, 248, 0.35) !important;
    color: #f0f9ff !important;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.15) !important;
}
.guardify-theme-nordic-frost .guardify-math-row { background: rgba(0, 0, 0, 0.25) !important; border-color: rgba(56, 189, 248, 0.2) !important; }
.guardify-theme-nordic-frost .guardify-math-eq { color: #38bdf8 !important; background: rgba(56, 189, 248, 0.12) !important; }
.guardify-theme-nordic-frost input.guardify-input,
.wpcf7 .guardify-theme-nordic-frost input.guardify-input { color: #f0f9ff !important; background: #1e293b !important; border-color: rgba(56, 189, 248, 0.3) !important; }
.guardify-theme-nordic-frost .guardify-refresh-btn { background: rgba(56, 189, 248, 0.12) !important; border-color: rgba(56, 189, 248, 0.25) !important; color: #f0f9ff !important; }

/* 6. Soft Emerald */
.guardify-theme-soft-emerald,
.wpcf7 .guardify-theme-soft-emerald,
form .guardify-theme-soft-emerald,
.woocommerce .guardify-theme-soft-emerald {
    background: #064e3b !important;
    border: 1px solid #065f46 !important;
    color: #ecfdf5 !important;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.2) !important;
}
.guardify-theme-soft-emerald .guardify-math-row { background: rgba(0, 0, 0, 0.25) !important; border-color: rgba(52, 211, 153, 0.2) !important; }
.guardify-theme-soft-emerald .guardify-math-eq { color: #34d399 !important; background: rgba(52, 211, 153, 0.15) !important; }
.guardify-theme-soft-emerald input.guardify-input,
.wpcf7 .guardify-theme-soft-emerald input.guardify-input { color: #ecfdf5 !important; background: #065f46 !important; border-color: #047857 !important; }
.guardify-theme-soft-emerald .guardify-refresh-btn { background: rgba(52, 211, 153, 0.15) !important; border-color: rgba(52, 211, 153, 0.3) !important; color: #ecfdf5 !important; }

/* 7. Warm Terracotta */
.guardify-theme-warm-terracotta,
.wpcf7 .guardify-theme-warm-terracotta,
form .guardify-theme-warm-terracotta,
.woocommerce .guardify-theme-warm-terracotta {
    background: #451a03 !important;
    border: 1px solid #78350f !important;
    color: #fef3c7 !important;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.2) !important;
}
.guardify-theme-warm-terracotta .guardify-math-row { background: rgba(0, 0, 0, 0.25) !important; border-color: rgba(251, 146, 60, 0.2) !important; }
.guardify-theme-warm-terracotta .guardify-math-eq { color: #fb923c !important; background: rgba(251, 146, 60, 0.15) !important; }
.guardify-theme-warm-terracotta input.guardify-input,
.wpcf7 .guardify-theme-warm-terracotta input.guardify-input { color: #fef3c7 !important; background: #78350f !important; border-color: #9a3412 !important; }
.guardify-theme-warm-terracotta .guardify-refresh-btn { background: rgba(251, 146, 60, 0.15) !important; border-color: rgba(251, 146, 60, 0.3) !important; color: #fef3c7 !important; }

/* 8. Classic WP */
.guardify-theme-classic-wp,
.wpcf7 .guardify-theme-classic-wp,
form .guardify-theme-classic-wp,
.woocommerce .guardify-theme-classic-wp {
    background: #1e1b4b !important;
    border: 1px solid #312e81 !important;
    color: #e0e7ff !important;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.2) !important;
}
.guardify-theme-classic-wp .guardify-math-row { background: rgba(0, 0, 0, 0.25) !important; border-color: rgba(99, 102, 241, 0.2) !important; }
.guardify-theme-classic-wp .guardify-math-eq { color: #818cf8 !important; background: rgba(99, 102, 241, 0.18) !important; }
.guardify-theme-classic-wp input.guardify-input,
.wpcf7 .guardify-theme-classic-wp input.guardify-input { color: #e0e7ff !important; background: #312e81 !important; border-color: #4338ca !important; }
.guardify-theme-classic-wp .guardify-refresh-btn { background: rgba(99, 102, 241, 0.18) !important; border-color: rgba(99, 102, 241, 0.3) !important; color: #e0e7ff !important; }

/* 9. Royal Amethyst */
.guardify-theme-royal-amethyst,
.wpcf7 .guardify-theme-royal-amethyst,
form .guardify-theme-royal-amethyst,
.woocommerce .guardify-theme-royal-amethyst {
    background: linear-gradient(135deg, #1e112a, #2e1065) !important;
    border: 1px solid rgba(192, 132, 252, 0.4) !important;
    color: #f3e8ff !important;
    box-shadow: 0 4px 25px rgba(168, 85, 247, 0.25) !important;
}
.guardify-theme-royal-amethyst .guardify-math-row { background: rgba(0, 0, 0, 0.3) !important; border-color: rgba(192, 132, 252, 0.2) !important; }
.guardify-theme-royal-amethyst .guardify-math-eq { color: #d8b4fe !important; background: rgba(168, 85, 247, 0.2) !important; }
.guardify-theme-royal-amethyst input.guardify-input,
.wpcf7 .guardify-theme-royal-amethyst input.guardify-input { color: #f3e8ff !important; background: #3b0764 !important; border-color: #9333ea !important; }
.guardify-theme-royal-amethyst .guardify-slider-thumb { background: #a855f7 !important; color: #fff !important; }
.guardify-theme-royal-amethyst .guardify-icon-btn.selected { border-color: #c084fc !important; box-shadow: 0 0 0 2px #c084fc !important; }
.guardify-theme-royal-amethyst .guardify-refresh-btn { background: rgba(168, 85, 247, 0.2) !important; border-color: rgba(168, 85, 247, 0.35) !important; color: #f3e8ff !important; }

/* 10. Midnight Neon */
.guardify-theme-midnight-neon,
.wpcf7 .guardify-theme-midnight-neon,
form .guardify-theme-midnight-neon,
.woocommerce .guardify-theme-midnight-neon {
    background: #030712 !important;
    border: 1px solid #22c55e !important;
    color: #f0fdf4 !important;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.25) !important;
}
.guardify-theme-midnight-neon .guardify-math-row { background: rgba(5, 46, 22, 0.5) !important; border-color: rgba(34, 197, 94, 0.25) !important; }
.guardify-theme-midnight-neon .guardify-math-eq { color: #4ade80 !important; background: rgba(34, 197, 94, 0.18) !important; }
.guardify-theme-midnight-neon input.guardify-input,
.wpcf7 .guardify-theme-midnight-neon input.guardify-input { color: #4ade80 !important; background: #052e16 !important; border-color: #22c55e !important; }
.guardify-theme-midnight-neon .guardify-slider-thumb { background: #22c55e !important; color: #000 !important; font-weight: bold !important; }
.guardify-theme-midnight-neon .guardify-icon-btn.selected { border-color: #22c55e !important; box-shadow: 0 0 0 2px #22c55e !important; }
.guardify-theme-midnight-neon .guardify-refresh-btn { background: rgba(34, 197, 94, 0.18) !important; border-color: rgba(34, 197, 94, 0.35) !important; color: #f0fdf4 !important; }

/* 11. Rose Gold */
.guardify-theme-rose-gold,
.wpcf7 .guardify-theme-rose-gold,
form .guardify-theme-rose-gold,
.woocommerce .guardify-theme-rose-gold {
    background: linear-gradient(135deg, #1c1012, #2a1418) !important;
    border: 1px solid #fb7185 !important;
    color: #ffe4e6 !important;
    box-shadow: 0 4px 20px rgba(251, 113, 133, 0.2) !important;
}
.guardify-theme-rose-gold .guardify-math-row { background: rgba(0, 0, 0, 0.3) !important; border-color: rgba(251, 113, 133, 0.2) !important; }
.guardify-theme-rose-gold .guardify-math-eq { color: #f43f5e !important; background: rgba(251, 113, 133, 0.15) !important; }
.guardify-theme-rose-gold input.guardify-input,
.wpcf7 .guardify-theme-rose-gold input.guardify-input { color: #fff !important; background: #38151c !important; border-color: #f43f5e !important; }
.guardify-theme-rose-gold .guardify-slider-thumb { background: #fb7185 !important; color: #fff !important; }
.guardify-theme-rose-gold .guardify-icon-btn.selected { border-color: #fb7185 !important; box-shadow: 0 0 0 2px #fb7185 !important; }
.guardify-theme-rose-gold .guardify-refresh-btn { background: rgba(251, 113, 133, 0.15) !important; border-color: rgba(251, 113, 133, 0.3) !important; color: #ffe4e6 !important; }

/* 12. Titanium Metal */
.guardify-theme-titanium-metal,
.wpcf7 .guardify-theme-titanium-metal,
form .guardify-theme-titanium-metal,
.woocommerce .guardify-theme-titanium-metal {
    background: linear-gradient(135deg, #1e293b, #0f172a) !important;
    border: 1px solid #94a3b8 !important;
    color: #f1f5f9 !important;
    box-shadow: 0 4px 20px rgba(148, 163, 184, 0.15) !important;
}
.guardify-theme-titanium-metal .guardify-math-row { background: rgba(0, 0, 0, 0.3) !important; border-color: rgba(148, 163, 184, 0.2) !important; }
.guardify-theme-titanium-metal .guardify-math-eq { color: #cbd5e1 !important; background: rgba(148, 163, 184, 0.15) !important; }
.guardify-theme-titanium-metal input.guardify-input,
.wpcf7 .guardify-theme-titanium-metal input.guardify-input { color: #fff !important; background: #334155 !important; border-color: #64748b !important; }
.guardify-theme-titanium-metal .guardify-slider-thumb { background: #94a3b8 !important; color: #0f172a !important; }
.guardify-theme-titanium-metal .guardify-icon-btn.selected { border-color: #cbd5e1 !important; box-shadow: 0 0 0 2px #cbd5e1 !important; }
.guardify-theme-titanium-metal .guardify-refresh-btn { background: rgba(148, 163, 184, 0.15) !important; border-color: rgba(148, 163, 184, 0.3) !important; color: #f1f5f9 !important; }

/* 13. Ocean Abyss */
.guardify-theme-ocean-abyss,
.wpcf7 .guardify-theme-ocean-abyss,
form .guardify-theme-ocean-abyss,
.woocommerce .guardify-theme-ocean-abyss {
    background: linear-gradient(135deg, #022c43, #051923) !important;
    border: 1px solid #00a8cc !important;
    color: #e0f7fa !important;
    box-shadow: 0 4px 20px rgba(0, 168, 204, 0.25) !important;
}
.guardify-theme-ocean-abyss .guardify-math-row { background: rgba(0, 0, 0, 0.35) !important; border-color: rgba(0, 229, 255, 0.25) !important; }
.guardify-theme-ocean-abyss .guardify-math-eq { color: #00e5ff !important; background: rgba(0, 229, 255, 0.15) !important; }
.guardify-theme-ocean-abyss input.guardify-input,
.wpcf7 .guardify-theme-ocean-abyss input.guardify-input { color: #e0f7fa !important; background: #003547 !important; border-color: #00a8cc !important; }
.guardify-theme-ocean-abyss .guardify-slider-thumb { background: #00a8cc !important; color: #fff !important; }
.guardify-theme-ocean-abyss .guardify-icon-btn.selected { border-color: #00e5ff !important; box-shadow: 0 0 0 2px #00e5ff !important; }
.guardify-theme-ocean-abyss .guardify-refresh-btn { background: rgba(0, 229, 255, 0.15) !important; border-color: rgba(0, 229, 255, 0.3) !important; color: #e0f7fa !important; }

/* 14. Minimal Monochrome */
.guardify-theme-minimal-monochrome,
.wpcf7 .guardify-theme-minimal-monochrome,
form .guardify-theme-minimal-monochrome,
.woocommerce .guardify-theme-minimal-monochrome {
    background: #000000 !important;
    border: 1px solid #333333 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05) !important;
}
.guardify-theme-minimal-monochrome .guardify-math-row { background: #111111 !important; border-color: #222222 !important; }
.guardify-theme-minimal-monochrome .guardify-math-eq { color: #ffffff !important; background: rgba(255,255,255,0.12) !important; }
.guardify-theme-minimal-monochrome input.guardify-input,
.wpcf7 .guardify-theme-minimal-monochrome input.guardify-input { color: #ffffff !important; background: #111111 !important; border-color: #444444 !important; }
.guardify-theme-minimal-monochrome .guardify-slider-thumb { background: #ffffff !important; color: #000000 !important; }
.guardify-theme-minimal-monochrome .guardify-icon-btn.selected { border-color: #ffffff !important; box-shadow: 0 0 0 2px #ffffff !important; }
.guardify-theme-minimal-monochrome .guardify-refresh-btn { background: rgba(255, 255, 255, 0.1) !important; border-color: rgba(255, 255, 255, 0.2) !important; color: #ffffff !important; }
