/**
 * Enhanced Product Cards - Premium Visual Design
 * Modern glass morphism with animated gradients and 3D effects
 */

/* ============================================
   SECTION STYLING
   ============================================ */

.vigthoria-products-section {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(10, 10, 26, 0.5) 10%,
        rgba(10, 10, 26, 0.8) 50%,
        rgba(10, 10, 26, 0.5) 90%,
        transparent 100%
    );
}

[data-theme="light"] .vigthoria-products-section {
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(248, 250, 252, 0.5) 10%,
        rgba(241, 245, 249, 0.9) 50%,
        rgba(248, 250, 252, 0.5) 90%,
        transparent 100%
    );
}

/* Background Effects Container */
.products-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.floating-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.floating-orb.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 191, 166, 0.35) 0%, transparent 70%);
    top: 40%;
    right: -8%;
    animation-delay: -7s;
    animation-duration: 25s;
}

.floating-orb.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.3) 0%, transparent 70%);
    bottom: -5%;
    left: 30%;
    animation-delay: -14s;
    animation-duration: 22s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -20px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }
    75% {
        transform: translate(-30px, -15px) scale(1.02);
    }
}

/* Grid Overlay */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
}

[data-theme="light"] .grid-overlay {
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.05) 1px, transparent 1px);
}

.vigthoria-products-section .container {
    position: relative;
    z-index: 1;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(102, 126, 234, 0.05));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge i {
    font-size: 0.9rem;
}

[data-theme="light"] .section-badge {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(102, 126, 234, 0.02));
}

/* Section Header Enhancement */
.vigthoria-products-section .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.vigthoria-products-section .section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

[data-theme="light"] .vigthoria-products-section .section-header h2 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vigthoria-products-section .section-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

[data-theme="light"] .vigthoria-products-section .section-header p {
    color: rgba(26, 26, 46, 0.7);
}

/* ============================================
   GRID LAYOUT - ENHANCED
   ============================================ */

.vigthoria-products-section .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 32px;
    perspective: 1000px;
}

@media (max-width: 1024px) {
    .vigthoria-products-section .row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================
   PRODUCT CARD - PREMIUM GLASS EFFECT
   ============================================ */

.product-card {
    position: relative;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.15),
        0 1px 2px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .product-card {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(248, 250, 252, 0.9) 100%
    );
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.08),
        0 1px 2px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Animated border gradient */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 40%,
        transparent 60%,
        rgba(255, 255, 255, 0.1) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

/* Hover state */
.product-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.25),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .product-card:hover {
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Product-specific accent colors on hover */
.product-card.operator:hover {
    box-shadow: 
        0 32px 64px rgba(102, 126, 234, 0.3),
        0 0 40px rgba(102, 126, 234, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-card.coder:hover {
    box-shadow: 
        0 32px 64px rgba(0, 191, 166, 0.3),
        0 0 40px rgba(0, 191, 166, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-card.market:hover {
    box-shadow: 
        0 32px 64px rgba(255, 107, 107, 0.3),
        0 0 40px rgba(255, 107, 107, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-card.agent:hover {
    box-shadow: 
        0 32px 64px rgba(167, 139, 250, 0.3),
        0 0 40px rgba(167, 139, 250, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-card.game-engine:hover {
    box-shadow: 
        0 32px 64px rgba(0, 212, 255, 0.3),
        0 0 40px rgba(0, 255, 136, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-card.music-ai:hover {
    box-shadow: 
        0 32px 64px rgba(196, 76, 255, 0.3),
        0 0 40px rgba(255, 107, 157, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ============================================
   PRODUCT IMAGE AREA - ENHANCED
   ============================================ */

.product-card .product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(180deg, #0a0a1a 0%, #1a1a2e 100%);
}

/* Animated mesh gradient background */
.product-card .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(0, 191, 166, 0.1) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

/* Product-specific gradients */
.product-card.operator .product-image {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #1a2040 100%);
}

.product-card.coder .product-image {
    background: linear-gradient(135deg, #0a0a1a 0%, #0a1a1a 50%, #0a2020 100%);
}

.product-card.market .product-image {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a0a 50%, #200a0a 100%);
}

.product-card.agent .product-image {
    background: linear-gradient(135deg, #0a0a1a 0%, #150a1a 50%, #1a0a20 100%);
}

.product-card.game-engine .product-image {
    background: linear-gradient(135deg, #0a0a1a 0%, #0a151a 50%, #0a1a15 100%);
}

.product-card.music-ai .product-image {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a15 50%, #150a1a 100%);
}

/* Enhanced video overlay gradient */
.product-card .video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.3) 60%,
        transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* Floating light orbs */
.product-card .product-image::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    z-index: 1;
    animation: floatOrb 8s ease-in-out infinite;
    pointer-events: none;
}

.product-card.operator .product-image::before {
    background: rgba(102, 126, 234, 0.5);
    top: -20%;
    left: -10%;
}

.product-card.coder .product-image::before {
    background: rgba(0, 191, 166, 0.5);
    top: -20%;
    right: -10%;
    left: auto;
    animation-delay: -2s;
}

.product-card.market .product-image::before {
    background: rgba(255, 107, 107, 0.5);
    bottom: -20%;
    left: -10%;
    top: auto;
    animation-delay: -4s;
}

.product-card.agent .product-image::before {
    background: rgba(167, 139, 250, 0.5);
    bottom: -20%;
    right: -10%;
    left: auto;
    top: auto;
    animation-delay: -6s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(15px, -10px) scale(1.1);
    }
    50% {
        transform: translate(-5px, 15px) scale(0.95);
    }
    75% {
        transform: translate(-15px, -5px) scale(1.05);
    }
}

/* ============================================
   BADGES - ENHANCED
   ============================================ */

.product-card .product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 165, 0, 0.9));
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a2e;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.product-card .live-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 20;
    font-size: 11px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card .live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px #00ff88;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 8px #00ff88;
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
        box-shadow: 0 0 16px #00ff88, 0 0 24px rgba(0, 255, 136, 0.3);
    }
}

/* ============================================
   CONTENT AREA - ENHANCED
   ============================================ */

.product-card .product-content {
    padding: 28px 28px 32px;
    position: relative;
    z-index: 2;
}

.product-card .product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

[data-theme="light"] .product-card .product-title {
    color: #1a1a2e;
}

.product-card .product-slogan {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    background: linear-gradient(135deg, #a78bfa 0%, #06b6d4 50%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.01em;
}

[data-theme="light"] .product-card .product-slogan {
    background: linear-gradient(135deg, #7c3aed 0%, #0891b2 50%, #059669 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-card .product-url {
    display: inline-block;
    font-size: 0.85rem;
    color: rgba(102, 126, 234, 0.9);
    margin-bottom: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-card.coder .product-url { color: rgba(0, 191, 166, 0.9); }
.product-card.market .product-url { color: rgba(255, 107, 107, 0.9); }
.product-card.agent .product-url { color: rgba(167, 139, 250, 0.9); }
.product-card.game-engine .product-url { color: rgba(0, 212, 255, 0.9); }
.product-card.music-ai .product-url { color: rgba(255, 107, 157, 0.9); }

.product-card .product-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 20px;
}

[data-theme="light"] .product-card .product-description {
    color: rgba(26, 26, 46, 0.7);
}

/* ============================================
   FEATURE LIST - ENHANCED
   ============================================ */

.product-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (max-width: 600px) {
    .product-card .feature-list {
        grid-template-columns: 1fr;
    }
}

.product-card .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    line-height: 1.5;
}

[data-theme="light"] .product-card .feature-list li {
    background: rgba(102, 126, 234, 0.04);
    border: 1px solid rgba(102, 126, 234, 0.1);
    color: rgba(26, 26, 46, 0.8);
}

.product-card .feature-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

[data-theme="light"] .product-card .feature-list li:hover {
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.2);
}

.product-card .feature-list li i {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(102, 126, 234, 0.1));
    border-radius: 50%;
    font-size: 10px;
    color: #667eea;
    margin-top: 2px;
}

.product-card.coder .feature-list li i {
    background: linear-gradient(135deg, rgba(0, 191, 166, 0.2), rgba(0, 191, 166, 0.1));
    color: #00bfa6;
}

.product-card.market .feature-list li i {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 107, 107, 0.1));
    color: #ff6b6b;
}

.product-card.agent .feature-list li i {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(167, 139, 250, 0.1));
    color: #a78bfa;
}

.product-card.game-engine .feature-list li i {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 136, 0.1));
    color: #00d4ff;
}

.product-card.music-ai .feature-list li i {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(196, 76, 255, 0.1));
    color: #ff6b9d;
}

/* ============================================
   ACTION BUTTONS - ENHANCED
   ============================================ */

.product-card .product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-card .btn-primary {
    flex: 1;
    min-width: 140px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #667eea 0%, #5a67d8 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.product-card .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.product-card .btn-primary:hover::before {
    left: 100%;
}

.product-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.product-card.coder .btn-primary {
    background: linear-gradient(135deg, #00bfa6 0%, #009688 100%);
    box-shadow: 0 4px 12px rgba(0, 191, 166, 0.3);
}

.product-card.coder .btn-primary:hover {
    box-shadow: 0 8px 24px rgba(0, 191, 166, 0.4);
}

.product-card.market .btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.product-card.market .btn-primary:hover {
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

.product-card.agent .btn-primary {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.3);
}

.product-card.agent .btn-primary:hover {
    box-shadow: 0 8px 24px rgba(167, 139, 250, 0.4);
}

.product-card .btn-secondary {
    flex: 1;
    min-width: 120px;
    padding: 14px 24px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

[data-theme="light"] .product-card .btn-secondary {
    color: rgba(26, 26, 46, 0.8);
    border-color: rgba(26, 26, 46, 0.2);
}

.product-card .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

[data-theme="light"] .product-card .btn-secondary:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    color: #667eea;
}

/* ============================================
   PLAY HINT - ENHANCED
   ============================================ */

.product-card .play-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.product-card:hover .play-hint {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.product-card .play-hint:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.product-card .play-hint i {
    color: white;
    font-size: 24px;
    margin-left: 4px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ============================================
   CORNER SHINE - ENHANCED
   ============================================ */

.product-card .corner-shine {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.12) 0%, 
        transparent 60%);
    z-index: 3;
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

.product-card:hover .corner-shine {
    opacity: 1;
    transform: translate(-20px, 20px);
}

/* ============================================
   RESPONSIVE ENHANCEMENTS
   ============================================ */

@media (max-width: 768px) {
    .vigthoria-products-section {
        padding: 60px 0 80px;
    }
    
    .vigthoria-products-section .section-header {
        margin-bottom: 40px;
    }
    
    .product-card {
        border-radius: 20px;
    }
    
    .product-card .product-image {
        height: 220px;
        border-radius: 20px 20px 0 0;
    }
    
    .product-card .product-content {
        padding: 20px 20px 24px;
    }
    
    .product-card .product-title {
        font-size: 1.3rem;
    }
    
    .product-card .product-description {
        font-size: 0.9rem;
    }
    
    .product-card .feature-list li {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .product-card .btn-primary,
    .product-card .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    
    .product-card .play-hint {
        width: 56px;
        height: 56px;
    }
    
    .product-card .play-hint i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .product-card .product-actions {
        flex-direction: column;
    }
    
    .product-card .btn-primary,
    .product-card .btn-secondary {
        min-width: 100%;
    }
}

/* ============================================
   REDUCED MOTION SUPPORT
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .product-card,
    .product-card .play-hint,
    .product-card .corner-shine,
    .product-card::before,
    .product-card .product-image::before,
    .product-card .feature-list li {
        transition: none;
        animation: none;
    }
    
    .product-card:hover {
        transform: translateY(-4px);
    }
}
