/* Sadece ürün açıklaması alanını hedefle */
.dt-content-wrapper {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #374151; /* gri metin */
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    padding: 32px 24px;
    margin: 20px 0;
}

/* İç kutu (başlık + açıklama) */
.dt-box {
    background: #eff6ff;
    border-radius: 14px;
    padding: 24px 20px;
    border: 1px solid #dbeafe;
    margin-bottom: 24px;
}

.dt-box h2 {
    font-size: 26px;
    margin: 0 0 12px 0;
    color: #2563eb;
}

.dt-box p {
    margin: 0;
    font-size: 15px;
    color: #4b5563;
}

/* Grid alanı */
.dt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .dt-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Kartlar */
.dt-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.dt-item:hover {
    background-color: #f9fafb;
    transform: translateY(-1px);
}

/* İkon */
.dt-icon {
    width: 20px;
    height: 20px;
    color: #60a5fa;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Başlık ve metin */
.dt-title {
    display: block;
    font-size: 16px;
    color: #2563eb;
    margin-bottom: 2px;
}

.dt-text {
    display: block;
    font-size: 13px;
    color: #6b7280;
}

/* Alt etiketler */
.dt-tags {
    border-top: 1px solid #e5e7eb;
    margin-top: 24px;
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #6b7280;
}

.dt-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dt-tags span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 9999px;
    background-color: #60a5fa;
}
