.product-detail {
            padding: 40px 0;
            background-color: white;
        }
        
        .product-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .product-header h1 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .product-header p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .product-main-content {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .product-image-section {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .product-image {
            width: 100%;
            max-width: 800px;
            height: 400px;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            overflow: hidden;
            margin: 0 auto;
            padding: 20px;
        }
        
        .product-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .product-basic-info {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
        }