/* Sovina Download Catalogue - Frontend Styles */

.sdc-download-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
    gap: 8px;
}

.sdc-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    color: #fff !important;
    text-decoration: none !important;
}

.sdc-download-btn:active {
    transform: translateY(0);
}

.sdc-download-icon {
    font-size: 16px;
}

.sdc-download-text {
    font-weight: 600;
}

.sdc-download-size {
    font-size: 12px;
    opacity: 0.8;
    margin-left: 4px;
}

/* Catalogue Style - Giống chính xác hình mẫu */
.sdc-catalogue-style {
    display: inline-block;
    text-decoration: none !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    min-width: 220px;
    background: #fff;
}

.sdc-catalogue-style:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none !important;
}

.sdc-catalogue-style:active {
    transform: translateY(-1px);
}

.sdc-catalogue-content {
    display: flex;
    align-items: stretch;
    height: 60px;
}

.sdc-catalogue-icon {
    background: #dc3545;
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}

.sdc-catalogue-text {
    background: #fff;
    color: #333 !important;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8px 15px;
}

.sdc-catalogue-download {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333 !important;
    margin-bottom: 2px;
    margin-top: 3px;;
    line-height: 1.2;
}

.sdc-catalogue-name {
    font-size: 12px;
    font-weight: 600;
    color: #dc3545 !important;
    line-height: 1.3;
    text-transform: none;
}

.sdc-catalogue-size {
    font-size: 10px;
    font-weight: 500;
    color: #666 !important;
    margin-top: 1px;
    opacity: 0.8;
}

/* Alternative styles */
.sdc-download-btn.sdc-style-simple {
    background: #0073aa;
    border-radius: 4px;
    box-shadow: none;
}

.sdc-download-btn.sdc-style-simple:hover {
    background: #005a87;
    transform: none;
    box-shadow: none;
}

.sdc-download-btn.sdc-style-outline {
    background: transparent;
    border: 2px solid #0073aa;
    color: #0073aa !important;
    box-shadow: none;
}

.sdc-download-btn.sdc-style-outline:hover {
    background: #0073aa;
    color: #fff !important;
    transform: none;
}

.sdc-download-btn.sdc-style-minimal {
    background: none;
    color: #0073aa !important;
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: none;
    text-decoration: underline !important;
}

.sdc-download-btn.sdc-style-minimal:hover {
    background: #f0f6fc;
    text-decoration: none !important;
    transform: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .sdc-download-btn {
        font-size: 13px;
    }
    
    .sdc-download-icon {
        font-size: 14px;
    }
    
    .sdc-catalogue-style {
        min-width: 200px;
    }
    
    .sdc-catalogue-content {
        height: 55px;
    }
    
    .sdc-catalogue-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    
    .sdc-catalogue-text {
        padding: 6px 12px;
    }
    
    .sdc-catalogue-download {
        font-size: 13px;
    }
    
    .sdc-catalogue-name {
        font-size: 11px;
    }
    
    .sdc-catalogue-size {
        font-size: 9px;
    }
}
