/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--hp-gradient-secondary);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.product-card:hover {
    transform: translateY(-12px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2), 0 0 0 1px rgba(139, 92, 246, 0.1);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 50%;
    min-height: 450px;
    background: #000;
    flex-shrink: 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}

.product-card:hover .product-image {
    transform: scale(1.08);
    filter: brightness(1);
}

/* Globe Container */
.globe-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.globe-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.product-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-badge {
    display: inline-block;
    background: var(--hp-gradient-primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 24px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    box-shadow: var(--hp-shadow-accent);
}

.product-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--hp-fg-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.product-description {
    color: var(--hp-fg-muted);
    font-size: 1.0625rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.product-features {
    list-style: none;
    margin-bottom: 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--hp-fg-secondary);
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 500;
}

.product-features li::before {
    content: '✓';
    color: var(--hp-accent-primary);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.product-title-link {
    color: var(--hp-fg-primary);
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--hp-gradient-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--hp-shadow-accent);
}

.product-title-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--hp-shadow-accent-lg);
    background: linear-gradient(135deg, var(--hp-accent-primary-hover) 0%, var(--hp-accent-primary) 100%);
}
