/**
 * Premium Download Info Widget – like the screenshot
 *
 * Fully responsive, clean card with bold labels and an eye‑catching Total Sales badge.
 */

:root {
    --edd-info-bg: #ffffff;
    --edd-info-border: #e4e7ed;
    --edd-info-shadow: 0 2px 10px rgba(0,0,0,0.06);
    --edd-info-radius: 10px;
    --edd-info-accent: #21759b;
    --edd-info-sales-bg: #ff6b35;    /* vibrant orange */
    --edd-info-sales-text: #ffffff;
}

/* Widget container – card */
.edd-download-info {
    background: var(--edd-info-bg);
    border: 1px solid var(--edd-info-border);
    border-radius: var(--edd-info-radius);
    box-shadow: var(--edd-info-shadow);
    padding: 18px 20px 12px;
    margin-bottom: 25px;
    transition: box-shadow 0.2s ease;
}
.edd-download-info:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Widget title */
.edd-download-info .widget-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1e1e2a;
    margin: 0 0 14px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--edd-info-border);
}

/* Feature image */
.edd-download-info .attachment-medium {
    border-radius: 8px;
    margin-bottom: 16px;
    max-width: 100%;
    height: auto;
}

/* Buttons row */
.edd-download-info-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}
.edd-download-info-buttons .edd-submit {
    flex: 1 1 auto;
    min-width: 100px;
    text-align: center;
    border-radius: 50px !important;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 20px;
    transition: all 0.2s ease;
}
.edd-download-info-buttons .edd-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Details list */
.edd-download-info-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Each row */
.edd-info-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0 8px 2px;
    border-bottom: 1px dashed #f0f2f7;
}
.edd-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.edd-info-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #5a5a72;
    flex-shrink: 0;
    padding-right: 15px;
}

.edd-info-value {
    font-size: 14px;
    font-weight: 500;
    color: #1e1e2a;
    text-align: right;
    word-break: break-word;
    margin-left: 15px;
}

/* --- Version badge (subtle) --- */
.edd-info-version .edd-info-value {
    background: #eef3f8;
    padding: 2px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #155a7a;
    display: inline-block;
    text-align: center;
    min-width: 50px;
}

/* --- Total Sales – colourful badge --- */
.edd-info-sales .edd-info-value {
    background: var(--edd-info-sales-bg);
    color: var(--edd-info-sales-text);
    padding: 4px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 2px 8px rgba(255,107,53,0.3);
    transition: transform 0.2s ease;
}
.edd-info-sales .edd-info-value:hover {
    transform: scale(1.05);
}

/* Links inside values */
.edd-info-value a {
    color: var(--edd-info-accent);
    text-decoration: none;
    border-bottom: 1.5px dotted transparent;
    font-weight: 500;
    transition: border-color 0.2s ease;
}
.edd-info-value a:hover {
    border-bottom-color: var(--edd-info-accent);
}

/* Responsive – stack on mobile */
@media (max-width: 480px) {
    .edd-download-info {
        padding: 14px 12px 10px;
    }
    .edd-download-info-buttons {
        flex-direction: column;
        gap: 8px;
    }
    .edd-download-info-buttons .edd-submit {
        width: 100%;
        flex: 1 1 100%;
    }
    .edd-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 0;
    }
    .edd-info-label {
        padding-right: 0;
        font-size: 11px;
    }
    .edd-info-value {
        text-align: left;
        margin-left: 0;
        width: 100%;
        font-size: 14px;
    }
    /* Adjust badges for mobile */
    .edd-info-version .edd-info-value,
    .edd-info-sales .edd-info-value {
        display: inline-block;
        text-align: center;
        min-width: 50px;
    }
}