﻿/* ============================================
   INDIVIDUAL PRODUCT PAGES - FIXED
   ============================================ */
.product-hero {
    padding: calc(var(--space-3xl) + 60px) 0 var(--space-3xl);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
    margin-bottom: var(--space-3xl);
}

.product-hero-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.product-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-subtitle {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.product-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
}

.product-hero-bottom {
    text-align: center;
}

.product-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-icon {
    font-size: 2rem;
}

.highlight-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-dim);
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.highlight-value {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-primary-light);
}

/* Product Colors Inline */
.product-colors-inline {
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-colors-inline h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
    color: var(--color-primary-light);
}

.color-series-inline {
    margin-bottom: var(--space-md);
}

.color-series-inline:last-child {
    margin-bottom: 0;
}

.color-series-inline h4 {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.color-grid-inline {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: var(--space-sm);
}

.color-option {
    text-align: center;
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.color-option:hover,
.color-option.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.color-swatch-large {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-bottom: var(--space-xs);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    align-self: center;
}

.color-name {
    font-size: 0.65rem;
    font-weight: 500;
    line-height: 1.2;
}

.product-specs-section {
    padding: var(--space-3xl) 0;
    background: rgba(255, 255, 255, 0.02);
}

.product-specs-section h2 {
    text-align: center;
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-2xl);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.spec-item {
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-label {
    font-size: var(--font-size-xs);
    color: var(--color-text-dim);
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.spec-value {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text);
}

.product-features-section {
    padding: var(--space-3xl) 0;
}

.product-features-section h2 {
    text-align: center;
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-2xl);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.feature-item-large {
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.feature-item-large:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.feature-item-large h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
}

.feature-item-large p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.product-cta-section {
    padding: var(--space-3xl) 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
}

.product-cta-section h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-md);
}

.product-cta-section p {
    font-size: var(--font-size-xl);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
}

/* Responsive Design for Product Pages */
@media (max-width: 768px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .product-hero-content h1 {
        font-size: 2.5rem;
    }

    .product-price-large {
        font-size: 2.5rem;
    }

    .product-highlights {
        grid-template-columns: 1fr;
    }

    .color-grid-inline {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

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