.product-detail-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        padding: 30px;
        margin-bottom: 30px;
    }

    .product-image-wrapper {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        background: #f8f9fa;
        padding: 20px;
    }

    .product-image-wrapper img {
        width: 100%;
        height: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .product-image-wrapper:hover img {
        transform: scale(1.05);
    }

    .product-title {
        font-size: 2rem;
        font-weight: 700;
        color: #222;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .product-meta-item {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: #f8f9fa;
        border-radius: 8px;
        margin-right: 10px;
        margin-bottom: 10px;
        font-size: 0.9rem;
        color: #555;
    }

    .product-meta-item i {
        color: #e8673c;
    }

    .price-section {
        background: linear-gradient(135deg, #fff5f2, #fff);
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 20px;
        border-left: 4px solid #e8673c;
    }

    .price-original {
        font-size: 1.2rem;
        color: #999;
        text-decoration: line-through;
    }

    .price-final {
        font-size: 2.5rem;
        font-weight: 700;
        color: #e8673c;
    }

    .stock-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: 600;
    }

    .stock-available {
        background: #d4edda;
        color: #155724;
    }

    .stock-low {
        background: #fff3cd;
        color: #856404;
    }

    .stock-out {
        background: #f8d7da;
        color: #721c24;
    }

    .info-table {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
    }

    .info-table th {
        background: #f8f9fa;
        color: #555;
        font-weight: 600;
        width: 40%;
        padding: 15px 20px;
    }

    .info-table td {
        padding: 15px 20px;
        color: #333;
    }

    .review-section {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        padding: 30px;
    }

    .review-item {
        border-bottom: 1px solid #eee;
        padding: 20px 0;
    }

    .review-item:last-child {
        border-bottom: none;
    }

    .review-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    .review-author {
        font-weight: 600;
        color: #333;
    }

    .review-date {
        color: #999;
        font-size: 0.85rem;
    }

    .review-content {
        color: #555;
        line-height: 1.6;
    }

    .review-status {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .review-pending {
        background: #fff3cd;
        color: #856404;
    }

    .review-approved {
        background: #d4edda;
        color: #155724;
    }