/* ==========================================================================
   DMA THEMES PORTFOLIO - ULTRA-MODERN STUNNING DIGITAL MARKETPLACE STYLES
   v2.0 — Complete UI/UX Redesign
   ========================================================================== */

/* ==========================================================================
   0. DESIGN TOKENS & CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Typography */
    --dma-font: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --dma-font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Primary Palette — Refined Indigo */
    --dma-primary: #6366f1;
    --dma-primary-hover: #4f46e5;
    --dma-primary-light: #eef2ff;
    --dma-primary-glow: rgba(99, 102, 241, 0.35);
    --dma-primary-subtle: rgba(99, 102, 241, 0.08);

    /* Accent — Cyan */
    --dma-cyan: #06b6d4;
    --dma-cyan-hover: #0891b2;
    --dma-cyan-glow: rgba(6, 182, 212, 0.35);

    /* Neutral Palette */
    --dma-dark: #0f172a;
    --dma-dark-surface: #1e293b;
    --dma-slate: #334155;
    --dma-muted: #64748b;
    --dma-light-bg: #f8fafc;
    --dma-lighter-bg: #f1f5f9;
    --dma-border: #e2e8f0;
    --dma-border-subtle: #f1f5f9;

    /* Semantic Colors */
    --dma-success: #10b981;
    --dma-success-light: #ecfdf5;
    --dma-warning: #f59e0b;
    --dma-danger: #ef4444;

    /* Border Radius */
    --dma-radius-xs: 6px;
    --dma-radius-sm: 8px;
    --dma-radius: 14px;
    --dma-radius-lg: 20px;
    --dma-radius-xl: 24px;
    --dma-radius-full: 9999px;

    /* Shadows — Refined multi-layer */
    --dma-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --dma-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
    --dma-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    --dma-shadow-md: 0 12px 32px -4px rgba(15, 23, 42, 0.1), 0 4px 8px -2px rgba(15, 23, 42, 0.05);
    --dma-shadow-lg: 0 20px 48px -8px rgba(15, 23, 42, 0.14), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
    --dma-shadow-hover: 0 24px 56px -12px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(99, 102, 241, 0.08);
    --dma-shadow-glow: 0 0 20px rgba(99, 102, 241, 0.15), 0 0 60px rgba(99, 102, 241, 0.06);

    /* Glass Effect */
    --dma-glass: rgba(255, 255, 255, 0.72);
    --dma-glass-border: rgba(255, 255, 255, 0.2);
    --dma-glass-dark: rgba(15, 23, 42, 0.6);

    /* Transitions */
    --dma-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --dma-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dma-duration: 0.35s;
    --dma-duration-fast: 0.2s;
}

/* ==========================================================================
   0.5 GLOBAL RESET & TYPOGRAPHY
   ========================================================================== */
body, html {
    font-family: var(--dma-font) !important;
    color: var(--dma-slate);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4, h5, h6,
.page-title, .product_title {
    font-family: var(--dma-font-display) !important;
    color: var(--dma-dark) !important;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

p { line-height: 1.65; }

/* Smooth Scrolling */
html { scroll-behavior: smooth; }

/* Container */
.container {
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

/* ==========================================================================
   1. SCROLL-REVEAL ENTRANCE ANIMATIONS
   ========================================================================== */
@keyframes dmaFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes dmaScaleUp {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes dmaSlideInLeft {
    from { opacity: 0; transform: translateX(-24px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes dmaSlideInRight {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes dmaPulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px currentColor; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

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

@keyframes dmaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes dmaGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Reveal class applied by JS */
.dma-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--dma-ease), transform 0.7s var(--dma-ease);
}

.dma-reveal.dma-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for cards */
.dma-reveal-delay-1 { transition-delay: 0.05s; }
.dma-reveal-delay-2 { transition-delay: 0.1s; }
.dma-reveal-delay-3 { transition-delay: 0.15s; }
.dma-reveal-delay-4 { transition-delay: 0.2s; }
.dma-reveal-delay-5 { transition-delay: 0.25s; }
.dma-reveal-delay-6 { transition-delay: 0.3s; }

/* ==========================================================================
   2. GLOBAL HEADER — GLASSMORPHISM NAVBAR
   ========================================================================== */
#apus-header,
.apus-header {
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6) !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 8px 24px -8px rgba(15, 23, 42, 0.06) !important;
    transition: all 0.4s var(--dma-ease) !important;
    z-index: 1000 !important;
}

.main-sticky-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-sticky-header {
    backdrop-filter: blur(24px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
    background: rgba(255, 255, 255, 0.92) !important;
}

.header-bottom.container {
    padding: 10px 20px !important;
}

/* Logo */
.logo-in-theme {
    display: flex;
    align-items: center;
}

.logo-in-theme img {
    max-height: 44px !important;
    width: auto !important;
    transition: transform 0.3s var(--dma-ease), filter 0.3s ease;
}

.logo-in-theme img:hover {
    transform: scale(1.04);
    filter: brightness(1.05);
}

/* Nav Menu — Modern Pill Style */
.apus-megamenu .navbar-nav > li > a,
.main-menu .navbar-nav > li > a {
    font-family: var(--dma-font) !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: var(--dma-slate) !important;
    padding: 10px 16px !important;
    text-transform: none !important;
    border-radius: var(--dma-radius-sm) !important;
    transition: all 0.25s var(--dma-ease) !important;
    position: relative !important;
    letter-spacing: -0.01em !important;
}

.apus-megamenu .navbar-nav > li > a:hover,
.apus-megamenu .navbar-nav > li.active > a,
.apus-megamenu .navbar-nav > li.current-menu-item > a,
.main-menu .navbar-nav > li > a:hover,
.main-menu .navbar-nav > li.current-menu-item > a {
    color: var(--dma-primary) !important;
    background: var(--dma-primary-subtle) !important;
}

/* Active indicator dot */
.apus-megamenu .navbar-nav > li.current-menu-item > a::after,
.main-menu .navbar-nav > li.current-menu-item > a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2.5px;
    background: var(--dma-primary);
    border-radius: 2px;
}

/* Dropdown / Megamenu */
.navbar-nav.megamenu .dropdown-menu {
    border: 1px solid var(--dma-border) !important;
    border-radius: var(--dma-radius) !important;
    box-shadow: var(--dma-shadow-lg) !important;
    padding: 10px !important;
    animation: dmaFadeUp 0.25s var(--dma-ease);
    background: #ffffff !important;
}

.navbar-nav.megamenu .dropdown-menu li > a {
    border-radius: var(--dma-radius-sm) !important;
    padding: 10px 16px !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: var(--dma-slate) !important;
    transition: all 0.2s ease !important;
}

.navbar-nav.megamenu .dropdown-menu li > a:hover {
    background: var(--dma-primary-light) !important;
    color: var(--dma-primary) !important;
}

/* Header CTA Button */
.dma-header-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: var(--dma-primary) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 9px 20px !important;
    border-radius: var(--dma-radius-full) !important;
    box-shadow: 0 4px 14px var(--dma-primary-glow) !important;
    text-decoration: none !important;
    transition: all 0.3s var(--dma-ease) !important;
}

.dma-header-cta-btn:hover {
    background: var(--dma-primary-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.45) !important;
    color: #ffffff !important;
}

/* Cart icon */
.mini-cart .cart-icon {
    font-size: 18px !important;
    color: var(--dma-dark) !important;
    transition: color 0.2s ease;
}

.mini-cart .cart-icon:hover {
    color: var(--dma-primary) !important;
}

.mini-cart .count {
    background: var(--dma-primary) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 50% !important;
    font-size: 10px !important;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
}

/* ==========================================================================
   3. HERO SHOWCASE SECTION — CYBER-TECH AESTHETIC
   ========================================================================== */
.dma-hero-showcase,
.dma-hero-slide-item {
    background: linear-gradient(145deg, #080b14 0%, #0f172a 35%, #1e1b4b 70%, #1a1147 100%) !important;
    color: #ffffff;
    padding: 72px 0 90px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-bottom: none;
}

/* Ambient Glow Orbs */
.dma-hero-showcase::before,
.dma-hero-slide-item::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -5%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 65%);
    pointer-events: none;
    animation: dmaFloat 8s ease-in-out infinite;
}

.dma-hero-showcase::after,
.dma-hero-slide-item::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 65%);
    pointer-events: none;
    animation: dmaFloat 10s ease-in-out infinite reverse;
}

/* Subtle grid pattern overlay */
.dma-hero-slider-section {
    position: relative;
    background: #080b14;
    margin-bottom: 0;
    overflow: hidden;
    border-bottom: none;
}

.dma-hero-slider-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

.dma-hero-badge-wrap {
    margin-bottom: 20px;
}

.dma-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(129, 140, 248, 0.25);
    color: #a5b4fc;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 7px 18px;
    border-radius: var(--dma-radius-full);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
}

.dma-pulse-dot {
    width: 7px;
    height: 7px;
    background: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 8px #38bdf8;
    animation: dmaPulse 2s infinite;
}

.dma-hero-main-title {
    font-size: 44px !important;
    font-weight: 900 !important;
    line-height: 1.12 !important;
    margin: 0 0 20px 0 !important;
    letter-spacing: -0.03em;
    color: #ffffff !important;
}

.dma-gradient-text {
    background: linear-gradient(135deg, #ffffff 20%, #a5b4fc 50%, #38bdf8 80%, #ffffff 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: dmaShimmer 6s linear infinite;
}

.dma-hero-lead {
    font-size: 16.5px;
    color: rgba(203, 213, 225, 0.9);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 560px;
    font-weight: 400;
}

.dma-hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* Primary Hero CTA */
.dma-btn-hero-primary {
    background: linear-gradient(135deg, var(--dma-primary), var(--dma-primary-hover)) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    padding: 14px 28px !important;
    border-radius: var(--dma-radius-full) !important;
    border: none !important;
    box-shadow: 0 8px 24px var(--dma-primary-glow), inset 0 1px 0 rgba(255,255,255,0.15) !important;
    transition: all 0.35s var(--dma-ease) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.dma-btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dma-btn-hero-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 36px rgba(99, 102, 241, 0.5), inset 0 1px 0 rgba(255,255,255,0.2) !important;
    color: #ffffff !important;
}

.dma-btn-hero-primary:hover::before {
    opacity: 1;
}

/* Secondary Hero CTA */
.dma-btn-hero-secondary {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    padding: 14px 26px !important;
    border-radius: var(--dma-radius-full) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(8px);
    transition: all 0.35s var(--dma-ease) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dma-btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-3px) !important;
    color: #ffffff !important;
}

/* Buy Hero CTA (Green) */
.dma-btn-hero-buy {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    padding: 14px 26px !important;
    border-radius: var(--dma-radius-full) !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35), inset 0 1px 0 rgba(255,255,255,0.15) !important;
    transition: all 0.35s var(--dma-ease) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dma-btn-hero-buy:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 36px rgba(16, 185, 129, 0.5) !important;
    color: #ffffff !important;
}

/* Trust Bullets */
.dma-hero-trust-bullets {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(148, 163, 184, 0.8);
}

.dma-hero-trust-bullets span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dma-hero-trust-bullets span i {
    color: #34d399;
    font-size: 12px;
}

/* Hero Price Bar */
.dma-hero-price-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.dma-hero-slide-price {
    font-size: 28px;
    font-weight: 900;
    color: #38bdf8;
    letter-spacing: -0.02em;
}

.dma-hero-license-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    font-weight: 700;
    color: rgba(203, 213, 225, 0.8);
    padding: 5px 14px;
    border-radius: var(--dma-radius-xs);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Browser Mockup Frame */
.dma-mockup-frame {
    background: var(--dma-dark-surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 72px -16px rgba(0, 0, 0, 0.55), 0 0 40px rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: transform 0.5s var(--dma-ease);
}

.dma-mockup-frame:hover {
    transform: translateY(-8px) scale(1.015);
}

.dma-mockup-header {
    background: #0f172a;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dma-mockup-dots {
    display: flex;
    gap: 7px;
}

.dma-mockup-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dma-dot-red { background: #ef4444; }
.dma-dot-yellow { background: #f59e0b; }
.dma-dot-green { background: #10b981; }

.dma-mockup-url {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--dma-radius-xs);
    padding: 4px 14px;
    font-size: 11px;
    color: #94a3b8;
    flex-grow: 1;
    font-family: 'SF Mono', 'Cascadia Code', monospace;
}

.dma-mockup-status {
    font-size: 10.5px;
    font-weight: 700;
    color: #34d399;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dma-mockup-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Slick Hero Slider Controls */
.dma-fancy-hero-slider .slick-dots {
    position: absolute;
    bottom: 28px;
    left: 0;
    width: 100%;
    display: flex !important;
    justify-content: center;
    gap: 8px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 10;
}

.dma-fancy-hero-slider .slick-dots li {
    margin: 0 !important;
}

.dma-fancy-hero-slider .slick-dots li button {
    width: 28px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: all 0.4s var(--dma-ease);
    padding: 0;
}

.dma-fancy-hero-slider .slick-dots li.slick-active button {
    background: #38bdf8;
    width: 44px;
    box-shadow: 0 0 14px rgba(56, 189, 248, 0.7);
}

.dma-fancy-hero-slider .slick-prev,
.dma-fancy-hero-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0;
    cursor: pointer;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--dma-ease);
}

.dma-fancy-hero-slider .slick-prev { left: 28px; }
.dma-fancy-hero-slider .slick-next { right: 28px; }

.dma-fancy-hero-slider .slick-prev:hover,
.dma-fancy-hero-slider .slick-next:hover {
    background: var(--dma-primary);
    border-color: var(--dma-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 24px var(--dma-primary-glow);
}

.dma-fancy-hero-slider .slick-prev::before {
    content: '\f104';
    font-family: FontAwesome;
    font-size: 16px;
}

.dma-fancy-hero-slider .slick-next::before {
    content: '\f105';
    font-family: FontAwesome;
    font-size: 16px;
}

/* ==========================================================================
   4. LIVE SEARCH & FILTER COMMAND BAR
   ========================================================================== */
.dma-command-bar-wrap {
    background: #ffffff;
    border: 1px solid var(--dma-border);
    border-radius: var(--dma-radius-lg);
    padding: 18px 24px;
    margin-bottom: 32px;
    box-shadow: var(--dma-shadow);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dma-command-bar-wrap:focus-within {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--dma-shadow), 0 0 0 3px rgba(99, 102, 241, 0.08);
}

.dma-command-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.dma-search-input-wrap {
    position: relative;
    flex: 1 1 300px;
    max-width: 420px;
}

.dma-search-input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
    transition: color 0.2s ease;
}

.dma-search-input-wrap:focus-within i {
    color: var(--dma-primary);
}

.dma-search-input {
    width: 100% !important;
    padding: 11px 16px 11px 40px !important;
    border: 1.5px solid var(--dma-border) !important;
    border-radius: var(--dma-radius) !important;
    font-size: 13.5px !important;
    font-family: var(--dma-font) !important;
    background: var(--dma-light-bg) !important;
    transition: all 0.25s var(--dma-ease) !important;
    outline: none !important;
    color: var(--dma-dark) !important;
}

.dma-search-input:focus {
    background: #ffffff !important;
    border-color: var(--dma-primary) !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1) !important;
}

.dma-search-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Filter Pills */
.dma-filter-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.dma-filter-pills li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--dma-radius-full);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--dma-muted) !important;
    background: var(--dma-lighter-bg);
    border: 1px solid transparent;
    text-decoration: none !important;
    transition: all 0.25s var(--dma-ease);
    white-space: nowrap;
}

.dma-filter-pills li a:hover {
    background: #e2e8f0;
    color: var(--dma-dark) !important;
}

.dma-filter-pills li a.active {
    background: var(--dma-primary);
    color: #ffffff !important;
    box-shadow: 0 4px 14px var(--dma-primary-glow);
    border-color: var(--dma-primary);
}

.dma-filter-pills li a .dma-count-badge {
    background: rgba(0, 0, 0, 0.08);
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: var(--dma-radius-full);
}

.dma-filter-pills li a.active .dma-count-badge {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

/* ==========================================================================
   5. THEME CARDS — 3-COLUMN GRID WITH MODERN GLASS EDGES
   ========================================================================== */
.dma-portfolio-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    margin: 0 0 48px 0 !important;
}

.dma-portfolio-card {
    background: #ffffff;
    border: 1px solid var(--dma-border);
    border-radius: var(--dma-radius-lg);
    overflow: hidden;
    box-shadow: var(--dma-shadow-sm);
    transition: all 0.4s var(--dma-ease);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.dma-portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--dma-shadow-hover);
    border-color: rgba(99, 102, 241, 0.25);
}

/* Subtle glow line at top of card on hover */
.dma-portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dma-primary), var(--dma-cyan), var(--dma-primary));
    background-size: 200% auto;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 4;
}

.dma-portfolio-card:hover::before {
    opacity: 1;
    animation: dmaGradientShift 3s linear infinite;
}

/* Card Media */
.dma-card-media {
    position: relative;
    overflow: hidden;
    background: #0f172a;
    aspect-ratio: 16 / 10;
}

/* Edition Badge */
.dma-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--dma-radius-xs);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.dma-badge-stm { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.dma-badge-lite { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.dma-badge-plan { background: linear-gradient(135deg, #10b981, #059669); }
.dma-badge-std { background: rgba(71, 85, 105, 0.85); backdrop-filter: blur(8px); }

/* Card Image */
.dma-card-image-wrap {
    margin: 0;
    position: relative;
    width: 100%;
    height: 100%;
}

.dma-card-img,
.dma-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--dma-ease);
}

.dma-portfolio-card:hover .dma-card-img,
.dma-portfolio-card:hover .dma-card-image-wrap img {
    transform: scale(1.06);
}

/* Hover Overlay */
.dma-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.75) 100%);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.35s var(--dma-ease);
    z-index: 2;
}

.dma-portfolio-card:hover .dma-card-overlay {
    opacity: 1;
}

.dma-overlay-actions {
    display: flex;
    gap: 10px;
    transform: translateY(12px);
    transition: transform 0.35s var(--dma-ease);
}

.dma-portfolio-card:hover .dma-overlay-actions {
    transform: translateY(0);
}

.dma-btn-action {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dma-dark) !important;
    font-size: 12px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: var(--dma-radius-full);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.25s var(--dma-ease);
    backdrop-filter: blur(4px);
}

.dma-btn-action:hover {
    background: var(--dma-primary);
    color: #ffffff !important;
    transform: scale(1.05);
    box-shadow: 0 6px 20px var(--dma-primary-glow);
}

/* Card Body */
.dma-card-body {
    padding: 20px 22px 22px !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dma-card-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.dma-rating-stars {
    color: #f59e0b;
    font-size: 11.5px;
    display: inline-flex;
    align-items: center;
    gap: 1.5px;
}

.dma-card-price {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: var(--dma-primary) !important;
    letter-spacing: -0.02em;
}

.dma-card-title {
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    margin: 0 0 10px 0 !important;
    letter-spacing: -0.02em;
}

.dma-card-title a {
    color: var(--dma-dark) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.dma-card-title a:hover {
    color: var(--dma-primary) !important;
}

.dma-compat-tag {
    font-size: 11.5px;
    color: var(--dma-success);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

/* Feature Bullets */
.dma-card-bullets {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 16px 0 !important;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dma-card-bullets li {
    font-size: 12.5px;
    color: var(--dma-muted);
    display: flex;
    align-items: center;
    gap: 7px;
}

.dma-card-bullets li i {
    color: var(--dma-success);
    font-size: 11px;
    flex-shrink: 0;
}

/* Card Action Buttons */
.dma-card-buttons-bar {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--dma-border-subtle);
}

.dma-btn-theme-demo {
    flex: 1 !important;
    background: linear-gradient(135deg, var(--dma-cyan), var(--dma-cyan-hover)) !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 10px 10px !important;
    border-radius: var(--dma-radius-sm) !important;
    text-align: center !important;
    text-decoration: none !important;
    border: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 3px 10px var(--dma-cyan-glow) !important;
    transition: all 0.25s var(--dma-ease) !important;
}

.dma-btn-theme-demo:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--dma-cyan-glow) !important;
    color: #ffffff !important;
}

.dma-btn-theme-cart {
    flex: 1.2 !important;
    background: linear-gradient(135deg, var(--dma-primary), var(--dma-primary-hover)) !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 10px 10px !important;
    border-radius: var(--dma-radius-sm) !important;
    text-align: center !important;
    text-decoration: none !important;
    border: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 3px 10px var(--dma-primary-glow) !important;
    transition: all 0.25s var(--dma-ease) !important;
}

.dma-btn-theme-cart:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--dma-primary-glow) !important;
    color: #ffffff !important;
}

.dma-btn-theme-details {
    flex: 0.8 !important;
    background: var(--dma-light-bg) !important;
    color: var(--dma-dark) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 10px 8px !important;
    border-radius: var(--dma-radius-sm) !important;
    text-align: center !important;
    border: 1px solid var(--dma-border) !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.25s var(--dma-ease) !important;
}

.dma-btn-theme-details:hover {
    background: #e2e8f0 !important;
    border-color: #cbd5e1 !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   6. PROMO BANNER CARDS (3 COLUMN)
   ========================================================================== */
.dma-promo-cards-wrap {
    margin: 32px 0 44px;
}

.dma-promo-card {
    background: #ffffff;
    border: 1px solid var(--dma-border);
    border-radius: var(--dma-radius);
    padding: 24px 22px;
    margin-bottom: 20px;
    box-shadow: var(--dma-shadow-sm);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.35s var(--dma-ease);
    height: calc(100% - 20px);
    position: relative;
    overflow: hidden;
}

.dma-promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--dma-primary);
    transition: width 0.35s var(--dma-ease);
    border-radius: 0 4px 4px 0;
}

.dma-promo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--dma-shadow-md);
    border-color: #cbd5e1;
}

.dma-promo-card:hover::before {
    width: 6px;
}

.dma-promo-card-1::before { background: #6366f1; }
.dma-promo-card-2::before { background: #10b981; }
.dma-promo-card-3::before { background: #8b5cf6; }

.dma-promo-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--dma-radius);
    background: var(--dma-primary-light);
    color: var(--dma-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s var(--dma-ease);
}

.dma-promo-card:hover .dma-promo-icon {
    transform: scale(1.08);
}

.dma-promo-tag {
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dma-muted);
    letter-spacing: 0.6px;
    display: block;
    margin-bottom: 4px;
}

.dma-promo-title {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: var(--dma-dark) !important;
    margin: 0 0 6px 0 !important;
    letter-spacing: -0.02em;
}

.dma-promo-text {
    font-size: 13px;
    color: var(--dma-muted);
    line-height: 1.55;
    margin: 0 0 10px 0;
}

.dma-promo-link {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--dma-primary) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.dma-promo-link:hover {
    color: var(--dma-primary-hover) !important;
    transform: translateX(3px);
}

/* ==========================================================================
   7. TRUST & STATS COUNTER BAR
   ========================================================================== */
.dma-stats-counter-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: var(--dma-radius-lg);
    padding: 30px 24px;
    margin: 24px 0 40px;
    color: #ffffff;
    box-shadow: var(--dma-shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.dma-stats-counter-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dma-primary), var(--dma-cyan), transparent);
}

.dma-stat-item {
    padding: 8px 16px;
    text-align: center;
}

.dma-stat-num {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: #38bdf8;
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
}

.dma-stat-text {
    font-size: 11.5px;
    color: rgba(203, 213, 225, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   8. WHY CHOOSE DMA THEMES - 6-BOX FEATURES
   ========================================================================== */
.dma-features-section {
    background: var(--dma-light-bg);
    border: 1px solid var(--dma-border);
    border-radius: var(--dma-radius-lg);
    padding: 44px 30px;
    margin: 40px 0;
}

.dma-features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin-top: 28px;
}

.dma-feature-box {
    background: #ffffff;
    border: 1px solid var(--dma-border);
    border-radius: var(--dma-radius);
    padding: 24px 20px;
    box-shadow: var(--dma-shadow-xs);
    transition: all 0.35s var(--dma-ease);
    position: relative;
    overflow: hidden;
}

.dma-feature-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--dma-primary);
    transform: scaleX(0);
    transition: transform 0.35s var(--dma-ease);
}

.dma-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--dma-shadow-md);
    border-color: rgba(99, 102, 241, 0.15);
}

.dma-feature-box:hover::after {
    transform: scaleX(1);
}

.dma-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--dma-primary-light);
    color: var(--dma-primary);
    border-radius: var(--dma-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    transition: transform 0.3s var(--dma-ease), background 0.3s ease;
}

.dma-feature-box:hover .dma-feature-icon {
    transform: scale(1.1);
    background: rgba(99, 102, 241, 0.15);
}

.dma-feature-box h3 {
    font-size: 15.5px !important;
    font-weight: 800 !important;
    color: var(--dma-dark) !important;
    margin: 0 0 8px 0 !important;
}

.dma-feature-box p {
    font-size: 13px;
    color: var(--dma-muted);
    line-height: 1.55;
    margin: 0;
}

/* ==========================================================================
   9. VIDEO SHOWCASE & FAQ ACCORDION
   ========================================================================== */
.dma-video-showcase-section {
    background: #ffffff;
    border-top: 1px solid var(--dma-border);
    border-bottom: 1px solid var(--dma-border);
    padding: 56px 0;
    margin: 40px 0;
}

.dma-video-title {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: var(--dma-dark) !important;
    line-height: 1.25 !important;
    margin: 0 0 14px 0 !important;
    letter-spacing: -0.03em;
}

.dma-video-desc {
    font-size: 14.5px;
    color: var(--dma-muted);
    line-height: 1.65;
    margin-bottom: 22px;
}

.dma-video-points {
    margin-bottom: 26px;
}

.dma-vpoint {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dma-slate);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dma-vpoint i {
    color: var(--dma-success);
}

.dma-video-wrapper {
    background: #0f172a;
    padding: 10px;
    border-radius: var(--dma-radius-lg);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.dma-video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--dma-radius);
}

.dma-video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* FAQ */
.dma-faq-section {
    padding: 40px 0 50px;
}

.dma-faq-item {
    background: #ffffff;
    border: 1px solid var(--dma-border);
    border-radius: var(--dma-radius);
    padding: 22px 24px;
    margin-bottom: 14px;
    box-shadow: var(--dma-shadow-xs);
    transition: all 0.3s var(--dma-ease);
}

.dma-faq-item:hover {
    border-color: rgba(99, 102, 241, 0.15);
    box-shadow: var(--dma-shadow-sm);
    transform: translateX(4px);
}

.dma-faq-question {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: var(--dma-dark) !important;
    margin: 0 0 8px 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dma-faq-question i {
    color: var(--dma-primary);
    font-size: 14px;
}

.dma-faq-answer {
    font-size: 13.5px;
    color: var(--dma-muted);
    line-height: 1.6;
    margin: 0;
    padding-left: 24px;
}

/* ==========================================================================
   10. HIGH-CONVERTING CTA BANNER
   ========================================================================== */
.dma-cta-section {
    margin: 40px 0 56px;
}

.dma-cta-box {
    background: linear-gradient(145deg, #1e1b4b 0%, #0f172a 60%, #0c1629 100%);
    border-radius: var(--dma-radius-xl);
    padding: 52px 28px;
    color: #ffffff;
    box-shadow: 0 28px 56px -14px rgba(15, 23, 42, 0.35);
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.dma-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.dma-cta-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: #6ee7b7;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 5px 16px;
    border-radius: var(--dma-radius-full);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.dma-cta-title {
    font-size: 30px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
    margin: 0 auto 14px auto !important;
    max-width: 720px;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 2;
}

.dma-cta-desc {
    font-size: 15px;
    color: rgba(203, 213, 225, 0.85);
    max-width: 580px;
    margin: 0 auto 28px auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   11. MODAL — QUICK DETAILS & LIVE PREVIEW
   ========================================================================== */
.dma-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(16px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.dma-modal-container,
.modal.dma-modal-container {
    background: #ffffff;
    border-radius: var(--dma-radius-xl);
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
    position: relative;
    display: flex;
    flex-direction: column;
}

.dma-modal-header {
    padding: 18px 28px;
    border-bottom: 1px solid var(--dma-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dma-light-bg);
    border-radius: var(--dma-radius-xl) var(--dma-radius-xl) 0 0;
}

.dma-modal-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--dma-dark) !important;
    margin: 0 !important;
}

.dma-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dma-muted);
    cursor: pointer;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.dma-modal-close:hover {
    color: var(--dma-danger);
    background: rgba(239, 68, 68, 0.08);
}

.dma-modal-body {
    padding: 28px;
}

.dma-modal-device-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.dma-device-btn {
    background: var(--dma-lighter-bg);
    border: 1px solid var(--dma-border);
    color: var(--dma-dark);
    font-weight: 700;
    font-size: 12px;
    padding: 8px 18px;
    border-radius: var(--dma-radius-full);
    cursor: pointer;
    transition: all 0.25s var(--dma-ease);
}

.dma-device-btn.active,
.dma-device-btn:hover {
    background: var(--dma-primary);
    color: #ffffff;
    border-color: var(--dma-primary);
    box-shadow: 0 4px 12px var(--dma-primary-glow);
}

.dma-modal-preview-frame-wrap {
    background: #0f172a;
    border-radius: var(--dma-radius);
    padding: 12px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.dma-modal-iframe {
    border: none;
    border-radius: var(--dma-radius-sm);
    width: 100%;
    height: 480px;
    background: #ffffff;
    transition: width 0.4s var(--dma-ease);
}

.dma-device-desktop { width: 100% !important; }
.dma-device-tablet { width: 768px !important; }
.dma-device-mobile { width: 375px !important; }

/* Preview Tabs */
.dma-preview-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--dma-light-bg);
    border-bottom: 1px solid var(--dma-border);
    border-radius: var(--dma-radius) var(--dma-radius) 0 0;
}

.dma-tab-btn {
    background: transparent;
    border: none;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--dma-muted);
    padding: 6px 14px;
    border-radius: var(--dma-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dma-tab-btn.active,
.dma-tab-btn:hover {
    background: var(--dma-primary);
    color: #ffffff;
}

/* Modal Price & Specs */
.dma-modal-price-box {
    background: var(--dma-light-bg);
    border: 1px solid var(--dma-border);
    border-radius: var(--dma-radius);
    padding: 18px;
    margin-bottom: 18px;
}

.dma-price-val {
    font-size: 28px;
    font-weight: 900;
    color: var(--dma-primary);
    letter-spacing: -0.03em;
}

.dma-license-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--dma-success);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.dma-modal-actions .btn {
    border-radius: var(--dma-radius) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 12px 20px !important;
    margin-bottom: 10px !important;
    transition: all 0.25s var(--dma-ease) !important;
}

.dma-btn-buy {
    background: linear-gradient(135deg, var(--dma-primary), var(--dma-primary-hover)) !important;
    border: none !important;
    box-shadow: 0 6px 18px var(--dma-primary-glow) !important;
    color: #ffffff !important;
}

.dma-btn-buy:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 28px rgba(99, 102, 241, 0.45) !important;
    color: #ffffff !important;
}

.dma-btn-live-demo {
    background: var(--dma-cyan) !important;
    border: none !important;
    box-shadow: 0 4px 14px var(--dma-cyan-glow) !important;
    color: #ffffff !important;
}

.dma-btn-live-demo:hover {
    transform: translateY(-2px) !important;
    color: #ffffff !important;
}

/* Spinner */
.dma-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--dma-border);
    border-top-color: var(--dma-primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Specs List */
.dma-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dma-specs-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--dma-border-subtle);
    font-size: 13px;
    color: var(--dma-slate);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dma-specs-list li:last-child {
    border-bottom: none;
}

.dma-specs-list li i {
    color: var(--dma-success);
    font-size: 12px;
}

/* Toast Notification */
.dma-toast-notification {
    position: fixed;
    top: 24px;
    right: 24px;
    background: var(--dma-dark);
    color: #ffffff;
    border-left: 4px solid var(--dma-success);
    border-radius: var(--dma-radius);
    padding: 14px 22px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    z-index: 999999;
    display: none;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    font-weight: 600;
    animation: dmaSlideInRight 0.35s var(--dma-ease);
}

/* ==========================================================================
   12. GLOBAL BREADCRUMB
   ========================================================================== */
.apus-breadscrumb, .breadcrumb {
    background: var(--dma-light-bg) !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid var(--dma-border) !important;
    margin-bottom: 32px !important;
}

.breadcrumb > li {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--dma-muted) !important;
}

.breadcrumb > li a {
    color: var(--dma-primary) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.breadcrumb > li a:hover {
    color: var(--dma-primary-hover) !important;
}

.breadcrumb > li.active {
    color: var(--dma-dark) !important;
    font-weight: 600 !important;
}

/* ==========================================================================
   13. SINGLE PRODUCT PAGE
   ========================================================================== */
.single-product .left-detail .image-mains {
    background: var(--dma-light-bg);
    border: 1px solid var(--dma-border);
    border-radius: var(--dma-radius-lg);
    padding: 16px;
    box-shadow: var(--dma-shadow);
    position: relative;
    overflow: hidden;
}

.single-product .left-detail .image-mains img {
    border-radius: var(--dma-radius);
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.single-product .summary.entry-summary {
    padding-left: 12px;
}

.dma-single-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.dma-single-compat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--dma-primary-light);
    color: var(--dma-primary);
    border: 1px solid #c7d2fe;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--dma-radius-full);
}

.dma-single-stars {
    color: #f59e0b;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.dma-single-rating-label {
    color: var(--dma-muted);
    font-size: 12px;
    font-weight: 600;
    margin-left: 6px;
}

.single-product .product_title {
    font-size: 30px !important;
    font-weight: 900 !important;
    color: var(--dma-dark) !important;
    margin: 0 0 16px 0 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.03em;
}

.single-product .summary p.price {
    font-size: 34px !important;
    font-weight: 900 !important;
    color: var(--dma-primary) !important;
    margin-bottom: 22px !important;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.single-product .summary p.price::after {
    content: '• Instant Delivery';
    font-size: 13px;
    font-weight: 600;
    color: var(--dma-success);
}

.single-product .woocommerce-product-details__short-description {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--dma-border-subtle);
}

/* Single Product Actions */
.single-product form.cart {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    margin-bottom: 32px !important;
}

.single-product .single_add_to_cart_button {
    background: linear-gradient(135deg, var(--dma-primary), var(--dma-primary-hover)) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    padding: 14px 34px !important;
    border-radius: var(--dma-radius) !important;
    border: none !important;
    box-shadow: 0 8px 24px var(--dma-primary-glow) !important;
    transition: all 0.3s var(--dma-ease) !important;
    cursor: pointer !important;
}

.single-product .single_add_to_cart_button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 36px rgba(99, 102, 241, 0.5) !important;
}

.dma-btn-single-demo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: var(--dma-cyan) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 13px 28px !important;
    border-radius: var(--dma-radius) !important;
    text-decoration: none !important;
    box-shadow: 0 6px 18px var(--dma-cyan-glow) !important;
    transition: all 0.3s var(--dma-ease) !important;
}

.dma-btn-single-demo:hover {
    background: var(--dma-cyan-hover) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.45) !important;
}

/* Single Product Feature Grid */
.dma-single-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    background: var(--dma-light-bg);
    border: 1px solid var(--dma-border);
    border-radius: var(--dma-radius);
    padding: 20px;
    margin-top: 26px;
}

.dma-single-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.dma-single-feat-item i {
    font-size: 18px;
    color: var(--dma-primary);
    background: var(--dma-primary-light);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--dma-radius);
    flex-shrink: 0;
}

.dma-single-feat-item strong {
    display: block;
    font-size: 13px;
    color: var(--dma-dark);
    font-weight: 700;
}

.dma-single-feat-item span {
    font-size: 12px;
    color: var(--dma-muted);
    line-height: 1.35;
    display: block;
}

/* Product Tabs */
.woocommerce-tabs {
    margin-top: 56px !important;
    background: #ffffff !important;
    border: 1px solid var(--dma-border) !important;
    border-radius: var(--dma-radius-lg) !important;
    overflow: hidden !important;
    box-shadow: var(--dma-shadow-sm) !important;
}

.woocommerce-tabs ul.tabs {
    background: var(--dma-light-bg) !important;
    border-bottom: 1px solid var(--dma-border) !important;
    padding: 0 24px !important;
    margin: 0 !important;
    display: flex !important;
    gap: 6px !important;
}

.woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-tabs ul.tabs li a {
    display: block !important;
    font-family: var(--dma-font) !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: var(--dma-muted) !important;
    padding: 16px 20px !important;
    border-bottom: 3px solid transparent !important;
    transition: all 0.25s ease !important;
}

.woocommerce-tabs ul.tabs li.active a {
    color: var(--dma-primary) !important;
    border-bottom-color: var(--dma-primary) !important;
    background: #ffffff !important;
}

.woocommerce-tabs .panel {
    padding: 32px !important;
    font-size: 14.5px !important;
    color: #475569 !important;
    line-height: 1.75 !important;
}

/* ==========================================================================
   14. CHECKOUT & CART — HIGH-TRUST DESIGN
   ========================================================================== */
.woocommerce-checkout #payment {
    background: var(--dma-light-bg) !important;
    border: 1px solid var(--dma-border) !important;
    border-radius: var(--dma-radius) !important;
    padding: 26px !important;
    box-shadow: var(--dma-shadow) !important;
}

.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid var(--dma-border) !important;
    padding-bottom: 18px !important;
    margin-bottom: 22px !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
    background: #ffffff !important;
    border: 1px solid var(--dma-border) !important;
    border-radius: var(--dma-radius) !important;
    padding: 16px 20px !important;
    margin-bottom: 12px !important;
    transition: all 0.25s ease !important;
}

.woocommerce-checkout #payment ul.payment_methods li:hover {
    border-color: rgba(99, 102, 241, 0.2) !important;
    box-shadow: var(--dma-shadow-sm) !important;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 700 !important;
    font-size: 14.5px !important;
    color: var(--dma-dark) !important;
    cursor: pointer !important;
}

.woocommerce-checkout #payment div.payment_box {
    background: transparent !important;
    color: #475569 !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    padding: 10px 0 0 0 !important;
}

.woocommerce-checkout #payment div.payment_box::before {
    display: none !important;
}

.woocommerce-checkout #payment #place_order {
    background: linear-gradient(135deg, var(--dma-success), #059669) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    padding: 15px 36px !important;
    border-radius: var(--dma-radius) !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35) !important;
    transition: all 0.3s var(--dma-ease) !important;
    cursor: pointer !important;
}

.woocommerce-checkout #payment #place_order:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 36px rgba(16, 185, 129, 0.5) !important;
}

/* Checkout form inputs */
.woocommerce form.checkout .form-row input.input-text,
.woocommerce form.checkout .form-row select,
.woocommerce form.checkout .form-row textarea {
    border: 1.5px solid #cbd5e1 !important;
    border-radius: var(--dma-radius-sm) !important;
    padding: 11px 16px !important;
    font-size: 14px !important;
    font-family: var(--dma-font) !important;
    background: #ffffff !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.woocommerce form.checkout .form-row input.input-text:focus,
.woocommerce form.checkout .form-row select:focus,
.woocommerce form.checkout .form-row textarea:focus {
    border-color: var(--dma-primary) !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1) !important;
    outline: none !important;
}

/* Cart */
.woocommerce table.cart {
    border: 1px solid var(--dma-border) !important;
    border-radius: var(--dma-radius) !important;
    overflow: hidden !important;
    box-shadow: var(--dma-shadow-sm) !important;
}

.woocommerce table.cart th {
    background: var(--dma-light-bg) !important;
    color: var(--dma-dark) !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    padding: 14px 18px !important;
}

.woocommerce table.cart td {
    padding: 16px 18px !important;
    border-top: 1px solid var(--dma-border-subtle) !important;
    vertical-align: middle !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background: linear-gradient(135deg, var(--dma-primary), var(--dma-primary-hover)) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    padding: 14px 30px !important;
    border-radius: var(--dma-radius) !important;
    box-shadow: 0 8px 24px var(--dma-primary-glow) !important;
    transition: all 0.3s var(--dma-ease) !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 36px rgba(99, 102, 241, 0.5) !important;
}

/* ==========================================================================
   15. GLOBAL DARK FOOTER
   ========================================================================== */
.dma-main-footer {
    background: #080b14 !important;
    color: #94a3b8 !important;
    font-family: var(--dma-font) !important;
    border-top: none !important;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* Animated gradient line at top of footer */
.dma-main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dma-primary), var(--dma-cyan), #8b5cf6, var(--dma-primary));
    background-size: 300% auto;
    animation: dmaGradientShift 4s linear infinite;
}

/* Ambient glow */
.dma-main-footer::after {
    content: '';
    position: absolute;
    top: -50px;
    left: 25%;
    width: 500px;
    height: 250px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.dma-footer-top {
    padding: 64px 0 48px;
    position: relative;
    z-index: 2;
}

.dma-footer-col {
    margin-bottom: 32px;
}

.dma-footer-logo-text {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.dma-footer-logo-text .dma-highlight {
    color: #38bdf8;
    margin-left: 2px;
}

.dma-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(56, 189, 248, 0.08);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.18);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--dma-radius-xs);
    margin: 12px 0 16px;
}

.dma-footer-desc {
    font-size: 13.5px;
    color: rgba(148, 163, 184, 0.8);
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 320px;
}

.dma-footer-socials {
    display: flex;
    gap: 10px;
}

.dma-footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: var(--dma-radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s var(--dma-ease);
}

.dma-footer-socials a:hover {
    background: var(--dma-primary);
    color: #ffffff;
    border-color: var(--dma-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px var(--dma-primary-glow);
}

.dma-footer-title {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 22px !important;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 12px;
}

.dma-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2.5px;
    background: linear-gradient(90deg, #38bdf8, var(--dma-primary));
    border-radius: 2px;
}

.dma-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dma-footer-links li {
    margin-bottom: 11px;
}

.dma-footer-links li a {
    color: rgba(148, 163, 184, 0.8);
    font-size: 13.5px;
    text-decoration: none;
    transition: all 0.25s var(--dma-ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dma-footer-links li a:hover {
    color: #38bdf8;
    transform: translateX(4px);
}

.dma-footer-links li a i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.dma-footer-links li a:hover i {
    transform: translateX(2px);
}

.dma-footer-small {
    font-size: 12.5px;
    color: rgba(148, 163, 184, 0.7);
    line-height: 1.55;
    margin-bottom: 16px;
}

.dma-footer-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.dma-pay-pill {
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--dma-radius-xs);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.dma-pay-pill:hover {
    transform: translateY(-1px);
}

.dma-trust-seal {
    font-size: 12px;
    color: var(--dma-success);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Footer Bottom Bar */
.dma-footer-bottom {
    background: #050710;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 22px 0;
}

.dma-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.dma-copyright-text {
    font-size: 12.5px;
    color: rgba(100, 116, 139, 0.8);
    margin: 0;
}

.dma-copyright-text strong {
    color: #cbd5e1;
}

.dma-footer-disclaimer {
    font-size: 11.5px;
    color: rgba(100, 116, 139, 0.7);
}

/* ==========================================================================
   16. CONTACT & FORMS
   ========================================================================== */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: var(--dma-radius) !important;
    padding: 13px 18px !important;
    font-size: 14px !important;
    font-family: var(--dma-font) !important;
    background: #ffffff !important;
    transition: all 0.25s var(--dma-ease) !important;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: var(--dma-primary) !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1) !important;
    outline: none !important;
}

.wpcf7-form input[type="submit"],
.comment-form input[type="submit"] {
    background: linear-gradient(135deg, var(--dma-primary), var(--dma-primary-hover)) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 14px 34px !important;
    border-radius: var(--dma-radius) !important;
    border: none !important;
    box-shadow: 0 8px 24px var(--dma-primary-glow) !important;
    cursor: pointer !important;
    transition: all 0.3s var(--dma-ease) !important;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 36px rgba(99, 102, 241, 0.5) !important;
}

/* ==========================================================================
   17. TOP TRIAL BAR & MODAL
   ========================================================================== */
.dma-top-trial-bar {
    background: linear-gradient(90deg, #080b14 0%, #0f172a 40%, #064e3b 100%);
    color: #ffffff;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    padding: 11px 0;
    font-size: 13px;
    position: relative;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.dma-trial-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.dma-trial-bar-message {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dma-trial-pulse-pill {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: var(--dma-radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 14px rgba(16, 185, 129, 0.4);
}

.dma-trial-text {
    color: #f1f5f9;
    font-weight: 500;
}

.dma-trial-text strong {
    color: #38bdf8;
}

.dma-trial-bar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dma-btn-trial-download {
    background: var(--dma-success) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 12.5px !important;
    padding: 7px 18px !important;
    border-radius: var(--dma-radius-full) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35) !important;
    transition: all 0.25s var(--dma-ease) !important;
}

.dma-btn-trial-download:hover {
    background: #059669 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.5) !important;
    color: #ffffff !important;
}

.dma-btn-trial-open-modal {
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: var(--dma-radius-full);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.dma-btn-trial-open-modal:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.dma-trial-bar-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.2s ease;
}

.dma-trial-bar-close:hover {
    color: #ffffff;
}

/* Trial Modal */
.dma-trial-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: dmaFadeIn 0.3s var(--dma-ease);
}

.dma-trial-modal-dialog {
    background: #ffffff;
    border-radius: var(--dma-radius-xl);
    max-width: 540px;
    width: 100%;
    padding: 40px 36px;
    position: relative;
    box-shadow: 0 28px 64px -16px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--dma-border);
    text-align: center;
    animation: dmaScaleUp 0.35s var(--dma-ease);
}

.dma-trial-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: var(--dma-lighter-bg);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    color: var(--dma-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s var(--dma-ease);
}

.dma-trial-modal-close:hover {
    background: #e2e8f0;
    color: var(--dma-dark);
    transform: rotate(90deg);
}

.dma-trial-icon-badge {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: var(--dma-radius-lg);
    color: #ffffff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.35);
}

.dma-trial-tag {
    display: inline-block;
    background: var(--dma-primary-light);
    color: var(--dma-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 14px;
    border-radius: var(--dma-radius-full);
    margin-bottom: 12px;
}

.dma-trial-modal-title {
    font-size: 26px !important;
    font-weight: 900 !important;
    color: var(--dma-dark) !important;
    margin: 0 0 10px 0 !important;
    letter-spacing: -0.03em;
}

.dma-trial-modal-desc {
    font-size: 14.5px;
    color: var(--dma-muted);
    line-height: 1.65;
    margin: 0 0 24px 0;
}

.dma-trial-features-list {
    background: var(--dma-light-bg);
    border: 1px solid var(--dma-border);
    border-radius: var(--dma-radius);
    padding: 18px 22px;
    text-align: left;
    margin-bottom: 26px;
}

.dma-trial-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--dma-slate);
    margin-bottom: 10px;
}

.dma-trial-feat:last-child {
    margin-bottom: 0;
}

.dma-trial-feat strong {
    color: var(--dma-dark);
}

.dma-trial-modal-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dma-btn-modal-download {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    padding: 14px 30px !important;
    border-radius: var(--dma-radius) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35) !important;
    transition: all 0.3s var(--dma-ease) !important;
}

.dma-btn-modal-download:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 36px rgba(16, 185, 129, 0.5) !important;
    color: #ffffff !important;
}

.dma-btn-modal-browse {
    background: transparent;
    border: none;
    color: var(--dma-muted);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px;
    transition: color 0.2s ease;
}

.dma-btn-modal-browse:hover {
    color: var(--dma-dark);
    text-decoration: underline;
}

.dma-trial-modal-footer {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ==========================================================================
   18. PAGE LOADING OVERLAY
   ========================================================================== */
.apus-page-loading {
    background: #ffffff;
}

.apus-loader-inner {
    border-color: var(--dma-primary) !important;
}

/* Back to top */
#back-to-top {
    background: var(--dma-primary) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: var(--dma-radius-sm) !important;
    box-shadow: 0 4px 14px var(--dma-primary-glow) !important;
    transition: all 0.3s var(--dma-ease) !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#back-to-top:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.45) !important;
}

/* ==========================================================================
   19. WIDE CARD VARIANT (item-product/inner.php)
   ========================================================================== */
.dma-wide-card .dma-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dma-wide-card .dma-wide-buttons-bar {
    flex-wrap: wrap;
}

/* ==========================================================================
   20. RESPONSIVE — MOBILE-FIRST BREAKPOINTS
   ========================================================================== */

/* Tablet Landscape */
@media (max-width: 1199px) {
    .dma-hero-main-title {
        font-size: 38px !important;
    }

    .container {
        padding: 0 16px !important;
    }
}

/* Tablet Portrait */
@media (max-width: 991px) {
    .dma-portfolio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .dma-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .dma-hero-main-title {
        font-size: 32px !important;
    }

    .dma-hero-lead {
        font-size: 15px;
    }

    .dma-hero-showcase,
    .dma-hero-slide-item {
        padding: 52px 0 64px;
    }

    .dma-cta-title {
        font-size: 24px !important;
    }

    .dma-video-title {
        font-size: 24px !important;
    }

    .single-product .product_title {
        font-size: 24px !important;
    }

    .single-product .summary p.price {
        font-size: 28px !important;
    }

    .dma-single-features-grid {
        grid-template-columns: 1fr;
    }

    .dma-stat-num {
        font-size: 24px;
    }
}

/* Mobile Large */
@media (max-width: 767px) {
    .dma-portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .dma-features-grid {
        grid-template-columns: 1fr !important;
    }

    .dma-hero-main-title {
        font-size: 28px !important;
    }

    .dma-hero-lead {
        font-size: 14.5px;
        margin-bottom: 24px;
    }

    .dma-hero-showcase,
    .dma-hero-slide-item {
        padding: 44px 0 56px;
    }

    .dma-hero-cta-group {
        flex-direction: column;
        gap: 10px;
    }

    .dma-btn-hero-primary,
    .dma-btn-hero-secondary,
    .dma-btn-hero-buy {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .dma-hero-trust-bullets {
        flex-direction: column;
        gap: 10px;
    }

    .dma-command-bar {
        flex-direction: column;
        gap: 14px;
    }

    .dma-search-input-wrap {
        max-width: 100%;
        flex-basis: 100%;
    }

    .dma-filter-pills {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px !important;
    }

    .dma-filter-pills::-webkit-scrollbar {
        display: none;
    }

    .dma-card-buttons-bar {
        flex-wrap: wrap;
    }

    .dma-btn-theme-demo,
    .dma-btn-theme-cart {
        flex: 1 1 calc(50% - 4px) !important;
    }

    .dma-btn-theme-details {
        flex: 1 1 100% !important;
    }

    .dma-cta-box {
        padding: 36px 20px;
        border-radius: var(--dma-radius-lg);
    }

    .dma-cta-title {
        font-size: 22px !important;
    }

    .dma-cta-desc {
        font-size: 14px;
    }

    .dma-stats-counter-bar {
        padding: 24px 16px;
    }

    .dma-stat-item {
        padding: 8px;
    }

    .dma-stat-num {
        font-size: 22px;
    }

    .dma-promo-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .dma-promo-card::before {
        width: 100% !important;
        height: 3px !important;
        border-radius: 3px 3px 0 0 !important;
    }

    .dma-promo-card:hover::before {
        width: 100% !important;
        height: 5px !important;
    }

    .dma-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .dma-footer-col {
        text-align: center;
    }

    .dma-footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .dma-footer-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .dma-footer-socials {
        justify-content: center;
    }

    .dma-footer-links li a {
        justify-content: center;
    }

    .dma-footer-payment-icons {
        justify-content: center;
    }

    .dma-trust-seal {
        justify-content: center;
    }

    .dma-video-showcase-section {
        padding: 36px 0;
    }

    .dma-video-title {
        font-size: 22px !important;
    }

    .dma-faq-item {
        padding: 18px 16px;
    }

    .dma-faq-question {
        font-size: 14px !important;
    }

    .dma-faq-answer {
        padding-left: 0;
    }

    .single-product .product_title {
        font-size: 22px !important;
    }

    .single-product .summary p.price {
        font-size: 26px !important;
        flex-direction: column;
        gap: 4px;
    }

    /* Trial bar stacking */
    .dma-trial-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .dma-trial-bar-message {
        justify-content: center;
    }

    .dma-trial-bar-actions {
        justify-content: center;
    }

    /* Modal responsive */
    .dma-trial-modal-dialog {
        padding: 28px 22px;
    }

    .dma-trial-modal-title {
        font-size: 22px !important;
    }

    /* Slider arrows hide on mobile */
    .dma-fancy-hero-slider .slick-prev,
    .dma-fancy-hero-slider .slick-next {
        display: none !important;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .dma-hero-main-title {
        font-size: 24px !important;
    }

    .container {
        padding: 0 14px !important;
    }

    .dma-card-body {
        padding: 16px 16px 18px !important;
    }

    .dma-card-title {
        font-size: 15px !important;
    }

    .dma-card-price {
        font-size: 18px !important;
    }

    .dma-card-bullets li {
        font-size: 12px;
    }

    .dma-features-section {
        padding: 28px 16px;
    }

    .dma-feature-box {
        padding: 20px 16px;
    }

    .dma-mockup-frame:hover {
        transform: none;
    }
}

/* ==========================================================================
   21. MOBILE HEADER & FOOTER BAR
   ========================================================================== */
#apus-header-mobile {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6) !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04) !important;
    padding: 8px 0 !important;
}

#apus-header-mobile .logo img {
    max-height: 36px !important;
}

.btn-offcanvas {
    background: transparent !important;
    border: none !important;
    color: var(--dma-dark) !important;
    font-size: 22px !important;
    padding: 8px !important;
}

/* Mobile Bottom Nav */
.apus-footer-mobile {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-top: 1px solid var(--dma-border) !important;
    box-shadow: 0 -2px 12px rgba(15, 23, 42, 0.06) !important;
}

.apus-footer-mobile ul li a {
    color: var(--dma-muted) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    transition: color 0.2s ease !important;
}

.apus-footer-mobile ul li a:hover,
.apus-footer-mobile ul li a:focus {
    color: var(--dma-primary) !important;
}

.apus-footer-mobile ul li a i {
    font-size: 20px !important;
    color: inherit !important;
}

/* ==========================================================================
   22. SMOOTH PAGE LOAD TRANSITION
   ========================================================================== */
.wrapper-container {
    animation: dmaFadeIn 0.4s ease;
}

/* Selection color */
::selection {
    background: rgba(99, 102, 241, 0.15);
    color: var(--dma-dark);
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--dma-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Smooth image loading */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded,
img[loading="lazy"][src] {
    opacity: 1;
}
