/* Product Page Styles */

.product-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    color: var(--text-light);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-hero-content h1 {
    color: var(--text-light);
    margin-bottom: 24px;
}

.product-hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.product-hero-visual {
    position: relative;
    height: 500px;
}

.product-showcase {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 78, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.product-showcase::before {
    content: '3D PRODUCT VIEW';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
}

.key-features {
    padding: var(--section-padding) 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    padding: 40px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.feature-card h3 {
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.comfort-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.comfort-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.comfort-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.comfort-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.comfort-feature p {
    color: var(--text-gray);
    line-height: 1.7;
}

.comfort-visual {
    height: 600px;
}

.comfort-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
    border-radius: 8px;
    position: relative;
}

.configurations {
    padding: var(--section-padding) 0;
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.config-card {
    text-align: center;
    padding: 50px 30px;
    background: white;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.config-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.config-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    display: block;
}

.config-card h3 {
    margin-bottom: 16px;
}

.config-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.accessories-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.accessories-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.accessory-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: left;
}

.accessory-bullet {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.specifications {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.spec-category {
    background: white;
    padding: 40px;
    border: 1px solid var(--border);
}

.spec-category h3 {
    font-size: 1.8rem;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary);
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.spec-value {
    color: var(--text-gray);
    line-height: 1.6;
}

.specs-note {
    text-align: center;
    margin-top: 60px;
    font-size: 1.1rem;
    color: var(--text-gray);
    font-style: italic;
}

.product-cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1A1A1A 100%);
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.cta-box h2 {
    color: var(--text-light);
    margin-bottom: 24px;
}

.cta-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .product-hero-grid,
    .comfort-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .product-hero-visual,
    .comfort-visual {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 140px 0 80px;
    }
    
    .features-grid,
    .config-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}
