.daisy-docs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.daisy-docs-product-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 18px 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.daisy-docs-product-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.daisy-docs-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.daisy-docs-product-header h3 {
    margin: 0;
    font-size: 16px;
    color: #1d2327;
}

.daisy-docs-files {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.daisy-doc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8faff;
    border: 1px solid #e0ecff;
    border-radius: 8px;
    text-decoration: none;
    color: #1d2327;
    transition: all 0.15s;
}

.daisy-doc-link:hover {
    background: #eef5ff;
    border-color: #2471a3;
    transform: translateX(2px);
}

.daisy-doc-icon {
    font-size: 18px;
}

.daisy-doc-title {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.daisy-doc-download {
    color: #2471a3;
    font-size: 14px;
}

@media (max-width: 600px) {
    .daisy-docs-product-card { padding: 14px 16px; }
}
