/**
 * Product Detail Page - Main layout
 * MAX: 35 lines - Core page structure only
 */

.product-page {
    padding: calc(var(--header-height) + var(--spacing-2xl)) 0 50px 0;
}

@media (max-width: 1024px) {
    .product-page {
        padding-top: calc(var(--header-mobile-height) + var(--spacing-xl));
    }
}

.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.product-title { font-family:'Playfair Display',serif; font-size: 40px; font-weight: 700; margin: 0 0 12px; }
.product-brand { color:#888; margin-bottom: 16px; }
.product-price { font-size: 24px; font-weight: 700; margin: 16px 0; }

.product-actions { display: flex; gap: 12px; margin-top: 20px; }
.btn { background:#000; color:#fff; border:none; padding:12px 20px; border-radius:4px; cursor:pointer; }
.btn-outline { background:#fff; color:#000; border:1px solid #000; }

@media (max-width: 992px) { 
    .product-grid { grid-template-columns: 1fr; } 
}
