.product-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.product-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
    padding: 48px 40px;
    margin-bottom: 48px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}

.product-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.badge {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.product-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 40px 0;
    color: #1e293b;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.meta-item {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.meta-label {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.meta-value {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

.core-info-section {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 16px 64px rgba(0,0,0,0.12);
    border: 1px solid #e2e8f0;
}

.core-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 24px;
}

.core-info-item {
    display: flex;
    flex-direction: column;
}

.core-info-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.core-info-value {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border-left: 5px solid #3b82f6;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
}
