/* Download Buttons Widget Styles */
.product-download-buttons {
    margin: 20px 0;
}

.product-download-buttons .download-section {
    margin-bottom: 20px;
}

.product-download-buttons .download-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.product-download-buttons .highlight-word {
    color: #ff6600;
    font-weight: bold;
}

.product-download-buttons .download-line {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 20px 0;
}

/* Download File Box Style - سبز روشن با حاشیه سبز تیره */
.product-download-buttons .download-file-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e8f5e9;
    border: 2px solid #4caf50;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.product-download-buttons .download-file-box:hover {
    background-color: #c8e6c9;
    border-color: #388e3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.product-download-buttons .download-file-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}

.product-download-buttons .download-file-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.product-download-buttons .download-file-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-download-buttons .download-file-icon svg {
    width: 24px;
    height: 24px;
    fill: #4caf50;
}

.product-download-buttons .download-file-icon i {
    font-size: 24px;
    color: #4caf50;
}

.product-download-buttons .download-file-name {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
    word-wrap: break-word;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.product-download-buttons .download-file-info {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #000000;
    flex-wrap: nowrap;
    margin-left: 0;
    flex-shrink: 0;
}

.product-download-buttons .download-file-info span {
    white-space: nowrap;
}

.product-download-buttons .download-file-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-shrink: 0;
}

.product-download-buttons .download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-download-buttons .download-icon svg {
    width: 20px;
    height: 20px;
    fill: #4caf50;
}

.product-download-buttons .download-icon i {
    font-size: 20px;
    color: #4caf50;
}

/* Responsive */
@media (max-width: 768px) {
    .product-download-buttons .download-file-box {
        padding: 12px 15px;
    }

    /* کل محتوا در موبایل ستونی شود:
       ردیف اول: آیکن + نام فایل
       ردیف دوم: نوع/حجم + آیکن دانلود */
    .product-download-buttons .download-file-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .product-download-buttons .download-file-left {
        width: 100%;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .product-download-buttons .download-file-name {
        font-size: 14px;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        flex: 1;
        min-width: 0;
    }

    /* ردیف دوم: اطلاعات فایل + دکمه دانلود در یک خط */
    .product-download-buttons .download-file-right {
        width: 100%;
        justify-content: space-between;
        margin-left: 0;
    }

    .product-download-buttons .download-file-info {
        font-size: 12px;
        flex-wrap: wrap;
        gap: 8px;
    }
}

