.pdtp-container-9e027581 {
    font-family: inherit;
    color: #1F2937;
}

.pdtp-tabs-nav {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid #E5E7EB;
    margin-bottom: 24px;
}

.pdtp-tab-nav-item {
    padding: 12px 24px;
    background: #FFFFFF;
    color: #042660;
    border: none;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pdtp-tab-nav-item:hover {
    background: #E11823;
    color: #FFFFFF;
}

.pdtp-tab-nav-item.active {
    background: #042660;
    color: #FFFFFF;
}

.pdtp-accordion-header {
    display: none;
    padding: 16px;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    font-weight: bold;
    justify-content: space-between;
}

.pdtp-accordion-header.active {
    background: #042660;
    color: #FFFFFF;
    border-color: #042660;
}

.pdtp-tab-content {
    display: none;
    animation: pdtpFade 0.3s ease;
}

.pdtp-tab-content.active {
    display: block;
}

@keyframes pdtpFade {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.pdtp-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.pdtp-specs-table th, .pdtp-specs-table td {
    padding: 12px;
    border: 1px solid #E5E7EB;
}

.pdtp-specs-table th {
    background: #F9FAFB;
    width: 30%;
    text-align: left;
}

/* Reviews */
.pdtp-star-rating-input {
    font-size: 32px;
    cursor: pointer;
    margin-bottom: 12px;
    user-select: none;
}
.pdtp-star-input {
    color: #D1D5DB;
    transition: color 0.2s;
}
.pdtp-review-form-wrapper {
    background: #F9FAFB;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}
.pdtp-review-form input, .pdtp-review-form textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
}
.pdtp-submit-btn {
    background: #E11823;
    color: #FFF;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.pdtp-submit-btn:hover {
    background: #C1121C;
}
.pdtp-review-card {
    border-bottom: 1px solid #E5E7EB;
    padding: 16px 0;
}
.pdtp-review-meta {
    font-weight: bold;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .pdtp-tabs-nav {
        display: none;
    }
    .pdtp-accordion-header {
        display: flex;
    }
    .pdtp-tab-content.active {
        margin-bottom: 16px;
        padding: 0 8px;
    }
    .pdtp-specs-table th, .pdtp-specs-table td {
        display: block;
        width: 100%;
    }
}