/* Product Lineup Styles */
.product-lineup {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.product-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(108, 92, 231, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.25);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-green));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.product-badge.flagship {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-orange));
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.product-image-wrapper {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(0, 212, 255, 0.05));
    position: relative;
    overflow: hidden;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    animation: productPulse 4s ease-in-out infinite;
}

@keyframes productPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.product-image {
    width: 70%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(108, 92, 231, 0.2));
    animation: productFloat 3s ease-in-out infinite;
}

@keyframes productFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.product-content {
    padding: 32px;
}

.product-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.product-tagline {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.product-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: var(--font-kr);
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.product-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.product-link:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

/* Mobile Responsive for Product Lineup */
@media (max-width: 968px) {
    .product-lineup {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-image-wrapper {
        height: 250px;
    }

    .product-card {
        padding: 0;
    }

    .product-content {
        padding: 24px 20px;
    }

    .product-name {
        font-size: 20px;
    }

    .product-tagline {
        font-size: 13px;
    }

    .product-description {
        font-size: 13px;
    }

    .product-features li {
        font-size: 13px;
    }
}