.product-detail-page {
    padding: 2rem 0;
}

.product-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

.product-image-placeholder {
    width: 100%;
    height: 400px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
}

.stock-status {
    position: absolute;
    top: 15px;
    right: 15px;
}

.product-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-meta .badge {
    font-size: 0.875rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-label {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #28a745;
}

.product-type .badge {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.product-actions .btn {
    min-width: 140px;
    flex: 1;
    white-space: nowrap;
}

.product-actions .btn-success {
    background-color: #25d366;
    border-color: #25d366;
    font-weight: 600;
}

.product-actions .btn-success:hover {
    background-color: #20ba5a;
    border-color: #20ba5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.admin-actions {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
}

.product-description .card,
.product-specifications .card {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-description .card-header,
.product-specifications .card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    font-weight: 600;
}

.product-sidebar .card {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-sidebar .card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    font-weight: 600;
}

.related-products {
    min-height: 100px;
}

@media (max-width: 768px) {
    .product-image {
        height: 300px;
    }

    .product-image-placeholder {
        height: 300px;
    }

    .price-value {
        font-size: 1.5rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
        min-width: auto;
        margin-bottom: 0.5rem;
    }
}
